diff --git a/corpus/declarations.txt b/corpus/declarations.txt index 670ed46..ca98f7f 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -431,6 +431,94 @@ let u32: str = ""; (primitive_type) (string_literal))) +================================================================================ +Let-else Statements +================================================================================ + +let Foo::Bar { + texts, + values, +} = foo().bar().await? else { + return Err(index) +}; + +let Some(x) = y else { + let None = z else { + foo(); + break; + }; + continue; +}; + +-------------------------------------------------------------------------------- + +(source_file + (let_declaration + pattern: (struct_pattern + type: (scoped_type_identifier + path: (identifier) + name: (type_identifier)) + (field_pattern + name: (shorthand_field_identifier)) + (field_pattern + name: (shorthand_field_identifier))) + value: (try_expression + (await_expression + (call_expression + function: (field_expression + value: (call_expression + function: (identifier) + arguments: (arguments)) + field: (field_identifier)) + arguments: (arguments)))) + alternative: (block + (return_expression + (call_expression + function: (identifier) + arguments: (arguments + (identifier)))))) + (let_declaration + pattern: (tuple_struct_pattern + type: (identifier) + (identifier)) + value: (identifier) + alternative: (block + (let_declaration + pattern: (identifier) + value: (identifier) + alternative: (block + (expression_statement + (call_expression + function: (identifier) + arguments: (arguments))) + (expression_statement + (break_expression)))) + (expression_statement + (continue_expression))))) + +================================================================================ +Let declarations with if expressions as the value +================================================================================ + +let a = if b { + c +} else { + d +}; + +-------------------------------------------------------------------------------- + +(source_file + (let_declaration + (identifier) + (if_expression + (identifier) + (block + (identifier)) + (else_clause + (block + (identifier)))))) + ================================================================================ Structs ================================================================================ @@ -1046,27 +1134,31 @@ foo(#[bar(some tokens are special in other contexts: $/';()*()+.)] x); (call_expression function: (identifier) arguments: (arguments - (attribute_item (attr_item - (identifier) - arguments: (token_tree (identifier) (identifier)))) + (attribute_item + (attr_item + (identifier) + arguments: (token_tree + (identifier) + (identifier)))) (identifier) (identifier)))) (expression_statement (call_expression function: (identifier) arguments: (arguments - (attribute_item (attr_item - (identifier) - arguments: (token_tree - (identifier) - (identifier) - (identifier) - (identifier) + (attribute_item + (attr_item (identifier) - (identifier) - (identifier) - (token_tree) - (token_tree)))) + arguments: (token_tree + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (token_tree) + (token_tree)))) (identifier))))) ================================================================================ @@ -1090,36 +1182,51 @@ pub enum Error { (source_file (line_comment) (use_declaration - (scoped_identifier (identifier) (identifier))) + (scoped_identifier + (identifier) + (identifier))) (attribute_item - (meta_item (identifier) + (meta_item + (identifier) (meta_arguments - (meta_item (identifier)) - (meta_item (identifier))))) + (meta_item + (identifier)) + (meta_item + (identifier))))) (enum_item (visibility_modifier) (type_identifier) (enum_variant_list - (attribute_item (attr_item - (identifier) - (token_tree - (string_literal) + (attribute_item + (attr_item (identifier) - (token_tree (integer_literal))))) - (enum_variant (identifier) - (ordered_field_declaration_list (type_identifier))) - (attribute_item (attr_item + (token_tree + (string_literal) + (identifier) + (token_tree + (integer_literal))))) + (enum_variant (identifier) - (token_tree - (string_literal) - (identifier) - (identifier) + (ordered_field_declaration_list + (type_identifier))) + (attribute_item + (attr_item (identifier) - (identifier)))) - (enum_variant (identifier) + (token_tree + (string_literal) + (identifier) + (identifier) + (identifier) + (identifier)))) + (enum_variant + (identifier) (field_declaration_list - (field_declaration (field_identifier) (primitive_type)) - (field_declaration (field_identifier) (type_identifier))))))) + (field_declaration + (field_identifier) + (primitive_type)) + (field_declaration + (field_identifier) + (type_identifier))))))) ================================================================================ Attributes and Expressions diff --git a/grammar.js b/grammar.js index 7d1914b..cec6670 100644 --- a/grammar.js +++ b/grammar.js @@ -633,6 +633,10 @@ module.exports = grammar({ '=', field('value', $._expression) )), + optional(seq( + 'else', + field('alternative', $.block) + )), ';' ), @@ -1174,14 +1178,14 @@ module.exports = grammar({ $._expression ), - if_expression: $ => seq( + if_expression: $ => prec.right(seq( 'if', field('condition', $._expression), field('consequence', $.block), optional(field("alternative", $.else_clause)) - ), + )), - if_let_expression: $ => seq( + if_let_expression: $ => prec.right(seq( 'if', 'let', field('pattern', $._pattern), @@ -1189,7 +1193,7 @@ module.exports = grammar({ field('value', $._expression), field('consequence', $.block), optional(field('alternative', $.else_clause)) - ), + )), else_clause: $ => seq( 'else', diff --git a/src/grammar.json b/src/grammar.json index ce83aff..d8e7351 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -768,7 +768,7 @@ }, { "type": "PATTERN", - "value": "[\\/_\\-=->,;:::!=?.@*&#%^+<>|~]+" + "value": "[/_\\-=->,;:::!=?.@*&#%^+<>|~]+" }, { "type": "STRING", @@ -3682,6 +3682,31 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "block" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": ";" @@ -6901,102 +6926,110 @@ ] }, "if_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "if" - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "consequence", - "content": { - "type": "SYMBOL", - "name": "block" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "alternative", - "content": { - "type": "SYMBOL", - "name": "else_clause" - } - }, - { - "type": "BLANK" + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_expression" } - ] - } - ] + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "block" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + } }, "if_let_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "if" - }, - { - "type": "STRING", - "value": "let" - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_pattern" - } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "consequence", - "content": { - "type": "SYMBOL", - "name": "block" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "alternative", - "content": { - "type": "SYMBOL", - "name": "else_clause" - } - }, - { - "type": "BLANK" + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "STRING", + "value": "let" + }, + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "_pattern" } - ] - } - ] + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "block" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + } }, "else_clause": { "type": "SEQ", diff --git a/src/node-types.json b/src/node-types.json index 02e8c02..c693021 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2458,6 +2458,16 @@ "type": "let_declaration", "named": true, "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "block", + "named": true + } + ] + }, "pattern": { "multiple": false, "required": true, diff --git a/src/parser.c b/src/parser.c index 889479c..52c0e22 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,16 +5,16 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 13 -#define STATE_COUNT 2582 -#define LARGE_STATE_COUNT 659 +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 2630 +#define LARGE_STATE_COUNT 667 #define SYMBOL_COUNT 368 #define ALIAS_COUNT 3 #define TOKEN_COUNT 183 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 243 +#define PRODUCTION_ID_COUNT 251 enum { sym_identifier = 1, @@ -145,41 +145,41 @@ enum { anon_sym_DASH_GT = 126, anon_sym_LT = 127, anon_sym_GT = 128, - anon_sym_COLON_COLON = 129, - anon_sym__ = 130, - anon_sym_AMP = 131, - anon_sym_DOT_DOT_DOT = 132, - anon_sym_in = 133, - anon_sym_LT2 = 134, - anon_sym_dyn = 135, - sym_mutable_specifier = 136, - anon_sym_DOT_DOT = 137, - anon_sym_DOT_DOT_EQ = 138, - anon_sym_DASH = 139, - anon_sym_AMP_AMP = 140, - anon_sym_PIPE_PIPE = 141, - anon_sym_PIPE = 142, - anon_sym_CARET = 143, - anon_sym_EQ_EQ = 144, - anon_sym_BANG_EQ = 145, - anon_sym_LT_EQ = 146, - anon_sym_GT_EQ = 147, - anon_sym_LT_LT = 148, - anon_sym_GT_GT = 149, - anon_sym_SLASH = 150, - anon_sym_PERCENT = 151, - anon_sym_PLUS_EQ = 152, - anon_sym_DASH_EQ = 153, - anon_sym_STAR_EQ = 154, - anon_sym_SLASH_EQ = 155, - anon_sym_PERCENT_EQ = 156, - anon_sym_AMP_EQ = 157, - anon_sym_PIPE_EQ = 158, - anon_sym_CARET_EQ = 159, - anon_sym_LT_LT_EQ = 160, - anon_sym_GT_GT_EQ = 161, - anon_sym_yield = 162, - anon_sym_else = 163, + anon_sym_else = 129, + anon_sym_COLON_COLON = 130, + anon_sym__ = 131, + anon_sym_AMP = 132, + anon_sym_DOT_DOT_DOT = 133, + anon_sym_in = 134, + anon_sym_LT2 = 135, + anon_sym_dyn = 136, + sym_mutable_specifier = 137, + anon_sym_DOT_DOT = 138, + anon_sym_DOT_DOT_EQ = 139, + anon_sym_DASH = 140, + anon_sym_AMP_AMP = 141, + anon_sym_PIPE_PIPE = 142, + anon_sym_PIPE = 143, + anon_sym_CARET = 144, + anon_sym_EQ_EQ = 145, + anon_sym_BANG_EQ = 146, + anon_sym_LT_EQ = 147, + anon_sym_GT_EQ = 148, + anon_sym_LT_LT = 149, + anon_sym_GT_GT = 150, + anon_sym_SLASH = 151, + anon_sym_PERCENT = 152, + anon_sym_PLUS_EQ = 153, + anon_sym_DASH_EQ = 154, + anon_sym_STAR_EQ = 155, + anon_sym_SLASH_EQ = 156, + anon_sym_PERCENT_EQ = 157, + anon_sym_AMP_EQ = 158, + anon_sym_PIPE_EQ = 159, + anon_sym_CARET_EQ = 160, + anon_sym_LT_LT_EQ = 161, + anon_sym_GT_GT_EQ = 162, + anon_sym_yield = 163, anon_sym_move = 164, anon_sym_DOT = 165, anon_sym_AT = 166, @@ -519,6 +519,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_DASH_GT] = "->", [anon_sym_LT] = "<", [anon_sym_GT] = ">", + [anon_sym_else] = "else", [anon_sym_COLON_COLON] = "::", [anon_sym__] = "_", [anon_sym_AMP] = "&", @@ -553,7 +554,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_LT_LT_EQ] = "<<=", [anon_sym_GT_GT_EQ] = ">>=", [anon_sym_yield] = "yield", - [anon_sym_else] = "else", [anon_sym_move] = "move", [anon_sym_DOT] = ".", [anon_sym_AT] = "@", @@ -893,6 +893,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DASH_GT] = anon_sym_DASH_GT, [anon_sym_LT] = anon_sym_LT, [anon_sym_GT] = anon_sym_GT, + [anon_sym_else] = anon_sym_else, [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, [anon_sym__] = anon_sym__, [anon_sym_AMP] = anon_sym_AMP, @@ -927,7 +928,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, [anon_sym_yield] = anon_sym_yield, - [anon_sym_else] = anon_sym_else, [anon_sym_move] = anon_sym_move, [anon_sym_DOT] = anon_sym_DOT, [anon_sym_AT] = anon_sym_AT, @@ -1654,6 +1654,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_else] = { + .visible = true, + .named = false, + }, [anon_sym_COLON_COLON] = { .visible = true, .named = false, @@ -1790,10 +1794,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_else] = { - .visible = true, - .named = false, - }, [anon_sym_move] = { .visible = true, .named = false, @@ -2800,135 +2800,143 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [110] = {.index = 134, .length = 3}, [111] = {.index = 141, .length = 2}, [112] = {.index = 143, .length = 2}, - [114] = {.index = 145, .length = 3}, - [115] = {.index = 148, .length = 4}, - [116] = {.index = 106, .length = 2}, - [117] = {.index = 152, .length = 3}, - [118] = {.index = 155, .length = 2}, - [119] = {.index = 157, .length = 3}, - [120] = {.index = 160, .length = 2}, + [113] = {.index = 145, .length = 2}, + [115] = {.index = 147, .length = 3}, + [116] = {.index = 150, .length = 4}, + [117] = {.index = 106, .length = 2}, + [118] = {.index = 154, .length = 3}, + [119] = {.index = 157, .length = 2}, + [120] = {.index = 159, .length = 3}, [121] = {.index = 162, .length = 2}, - [122] = {.index = 164, .length = 3}, - [123] = {.index = 167, .length = 3}, - [124] = {.index = 32, .length = 1}, - [125] = {.index = 141, .length = 2}, - [126] = {.index = 170, .length = 3}, - [127] = {.index = 173, .length = 2}, + [122] = {.index = 164, .length = 2}, + [123] = {.index = 166, .length = 3}, + [124] = {.index = 169, .length = 3}, + [125] = {.index = 32, .length = 1}, + [126] = {.index = 141, .length = 2}, + [127] = {.index = 172, .length = 3}, [128] = {.index = 175, .length = 2}, - [129] = {.index = 177, .length = 3}, - [130] = {.index = 180, .length = 2}, + [129] = {.index = 177, .length = 2}, + [130] = {.index = 179, .length = 3}, [131] = {.index = 182, .length = 2}, - [132] = {.index = 184, .length = 1}, - [133] = {.index = 185, .length = 2}, - [134] = {.index = 187, .length = 1}, - [135] = {.index = 173, .length = 2}, - [136] = {.index = 188, .length = 4}, - [137] = {.index = 192, .length = 3}, - [138] = {.index = 195, .length = 4}, - [139] = {.index = 95, .length = 1}, - [140] = {.index = 199, .length = 2}, + [132] = {.index = 184, .length = 2}, + [133] = {.index = 186, .length = 1}, + [134] = {.index = 187, .length = 2}, + [135] = {.index = 189, .length = 1}, + [136] = {.index = 175, .length = 2}, + [137] = {.index = 190, .length = 4}, + [138] = {.index = 194, .length = 3}, + [139] = {.index = 197, .length = 4}, + [140] = {.index = 95, .length = 1}, [141] = {.index = 201, .length = 2}, - [142] = {.index = 203, .length = 3}, - [143] = {.index = 206, .length = 2}, - [144] = {.index = 208, .length = 3}, - [145] = {.index = 211, .length = 2}, - [146] = {.index = 213, .length = 3}, - [147] = {.index = 216, .length = 4}, - [148] = {.index = 213, .length = 3}, - [149] = {.index = 216, .length = 4}, - [150] = {.index = 220, .length = 3}, - [151] = {.index = 220, .length = 3}, - [152] = {.index = 208, .length = 3}, - [153] = {.index = 223, .length = 2}, + [142] = {.index = 203, .length = 2}, + [143] = {.index = 205, .length = 3}, + [144] = {.index = 208, .length = 2}, + [145] = {.index = 210, .length = 3}, + [146] = {.index = 213, .length = 2}, + [147] = {.index = 215, .length = 3}, + [148] = {.index = 218, .length = 4}, + [149] = {.index = 215, .length = 3}, + [150] = {.index = 218, .length = 4}, + [151] = {.index = 222, .length = 3}, + [152] = {.index = 222, .length = 3}, + [153] = {.index = 210, .length = 3}, [154] = {.index = 225, .length = 2}, [155] = {.index = 227, .length = 2}, - [156] = {.index = 229, .length = 1}, - [157] = {.index = 230, .length = 2}, - [158] = {.index = 232, .length = 2}, + [156] = {.index = 229, .length = 2}, + [157] = {.index = 231, .length = 2}, + [158] = {.index = 233, .length = 1}, [159] = {.index = 234, .length = 2}, - [160] = {.index = 201, .length = 2}, - [161] = {.index = 236, .length = 4}, - [162] = {.index = 240, .length = 3}, - [163] = {.index = 243, .length = 2}, - [164] = {.index = 245, .length = 3}, - [165] = {.index = 248, .length = 3}, - [166] = {.index = 243, .length = 2}, - [167] = {.index = 245, .length = 3}, - [168] = {.index = 251, .length = 3}, - [169] = {.index = 254, .length = 3}, - [170] = {.index = 257, .length = 4}, - [171] = {.index = 261, .length = 3}, - [172] = {.index = 264, .length = 2}, - [173] = {.index = 266, .length = 2}, - [174] = {.index = 268, .length = 3}, - [175] = {.index = 271, .length = 4}, - [176] = {.index = 275, .length = 3}, - [177] = {.index = 230, .length = 2}, - [178] = {.index = 278, .length = 2}, - [179] = {.index = 280, .length = 3}, - [180] = {.index = 283, .length = 3}, - [181] = {.index = 286, .length = 2}, - [182] = {.index = 288, .length = 3}, - [183] = {.index = 201, .length = 2}, - [184] = {.index = 291, .length = 3}, - [185] = {.index = 294, .length = 3}, - [186] = {.index = 266, .length = 2}, - [187] = {.index = 297, .length = 4}, - [188] = {.index = 301, .length = 5}, - [189] = {.index = 306, .length = 4}, - [190] = {.index = 310, .length = 2}, - [191] = {.index = 312, .length = 3}, - [192] = {.index = 315, .length = 4}, - [193] = {.index = 319, .length = 4}, + [160] = {.index = 236, .length = 2}, + [161] = {.index = 238, .length = 2}, + [162] = {.index = 203, .length = 2}, + [163] = {.index = 240, .length = 4}, + [164] = {.index = 244, .length = 3}, + [165] = {.index = 247, .length = 2}, + [166] = {.index = 249, .length = 3}, + [167] = {.index = 252, .length = 3}, + [168] = {.index = 247, .length = 2}, + [169] = {.index = 249, .length = 3}, + [170] = {.index = 255, .length = 3}, + [171] = {.index = 258, .length = 3}, + [172] = {.index = 261, .length = 4}, + [173] = {.index = 265, .length = 3}, + [174] = {.index = 268, .length = 2}, + [175] = {.index = 270, .length = 2}, + [176] = {.index = 272, .length = 3}, + [177] = {.index = 275, .length = 4}, + [178] = {.index = 279, .length = 3}, + [179] = {.index = 234, .length = 2}, + [180] = {.index = 282, .length = 2}, + [181] = {.index = 284, .length = 3}, + [182] = {.index = 287, .length = 3}, + [183] = {.index = 290, .length = 2}, + [184] = {.index = 292, .length = 3}, + [185] = {.index = 203, .length = 2}, + [186] = {.index = 295, .length = 3}, + [187] = {.index = 298, .length = 3}, + [188] = {.index = 270, .length = 2}, + [189] = {.index = 301, .length = 4}, + [190] = {.index = 305, .length = 5}, + [191] = {.index = 310, .length = 4}, + [192] = {.index = 314, .length = 2}, + [193] = {.index = 316, .length = 3}, [194] = {.index = 319, .length = 4}, - [195] = {.index = 323, .length = 2}, - [196] = {.index = 325, .length = 3}, - [197] = {.index = 328, .length = 2}, - [198] = {.index = 330, .length = 2}, - [199] = {.index = 106, .length = 2}, - [200] = {.index = 332, .length = 3}, - [201] = {.index = 335, .length = 3}, - [202] = {.index = 338, .length = 4}, - [203] = {.index = 335, .length = 3}, - [204] = {.index = 338, .length = 4}, - [205] = {.index = 332, .length = 3}, - [206] = {.index = 342, .length = 4}, - [207] = {.index = 346, .length = 4}, - [208] = {.index = 350, .length = 3}, - [209] = {.index = 353, .length = 4}, - [210] = {.index = 357, .length = 3}, - [211] = {.index = 360, .length = 3}, - [212] = {.index = 363, .length = 3}, - [213] = {.index = 366, .length = 4}, - [214] = {.index = 370, .length = 2}, - [215] = {.index = 372, .length = 3}, - [216] = {.index = 375, .length = 4}, - [217] = {.index = 379, .length = 3}, - [218] = {.index = 382, .length = 3}, - [219] = {.index = 385, .length = 3}, - [220] = {.index = 388, .length = 5}, - [221] = {.index = 393, .length = 2}, - [222] = {.index = 395, .length = 3}, - [223] = {.index = 398, .length = 3}, - [224] = {.index = 401, .length = 2}, - [225] = {.index = 403, .length = 4}, - [226] = {.index = 403, .length = 4}, - [227] = {.index = 407, .length = 4}, - [228] = {.index = 411, .length = 5}, - [229] = {.index = 416, .length = 4}, - [230] = {.index = 420, .length = 2}, - [231] = {.index = 422, .length = 4}, - [232] = {.index = 426, .length = 4}, - [233] = {.index = 430, .length = 3}, - [234] = {.index = 433, .length = 4}, - [235] = {.index = 437, .length = 3}, - [236] = {.index = 440, .length = 3}, - [237] = {.index = 443, .length = 5}, - [238] = {.index = 448, .length = 4}, - [239] = {.index = 452, .length = 5}, - [240] = {.index = 457, .length = 4}, - [241] = {.index = 461, .length = 3}, - [242] = {.index = 464, .length = 5}, + [195] = {.index = 323, .length = 4}, + [196] = {.index = 323, .length = 4}, + [197] = {.index = 327, .length = 2}, + [198] = {.index = 329, .length = 3}, + [199] = {.index = 332, .length = 3}, + [200] = {.index = 335, .length = 3}, + [201] = {.index = 338, .length = 2}, + [202] = {.index = 340, .length = 2}, + [203] = {.index = 106, .length = 2}, + [204] = {.index = 342, .length = 3}, + [205] = {.index = 345, .length = 3}, + [206] = {.index = 348, .length = 4}, + [207] = {.index = 345, .length = 3}, + [208] = {.index = 348, .length = 4}, + [209] = {.index = 342, .length = 3}, + [210] = {.index = 352, .length = 4}, + [211] = {.index = 356, .length = 4}, + [212] = {.index = 360, .length = 3}, + [213] = {.index = 363, .length = 4}, + [214] = {.index = 367, .length = 3}, + [215] = {.index = 370, .length = 3}, + [216] = {.index = 373, .length = 3}, + [217] = {.index = 376, .length = 4}, + [218] = {.index = 380, .length = 2}, + [219] = {.index = 382, .length = 3}, + [220] = {.index = 385, .length = 4}, + [221] = {.index = 389, .length = 3}, + [222] = {.index = 392, .length = 3}, + [223] = {.index = 395, .length = 3}, + [224] = {.index = 398, .length = 5}, + [225] = {.index = 403, .length = 2}, + [226] = {.index = 405, .length = 3}, + [227] = {.index = 408, .length = 3}, + [228] = {.index = 411, .length = 3}, + [229] = {.index = 414, .length = 3}, + [230] = {.index = 417, .length = 2}, + [231] = {.index = 419, .length = 4}, + [232] = {.index = 419, .length = 4}, + [233] = {.index = 423, .length = 4}, + [234] = {.index = 427, .length = 5}, + [235] = {.index = 432, .length = 4}, + [236] = {.index = 436, .length = 2}, + [237] = {.index = 438, .length = 4}, + [238] = {.index = 442, .length = 4}, + [239] = {.index = 446, .length = 3}, + [240] = {.index = 449, .length = 4}, + [241] = {.index = 453, .length = 3}, + [242] = {.index = 456, .length = 4}, + [243] = {.index = 460, .length = 3}, + [244] = {.index = 463, .length = 5}, + [245] = {.index = 468, .length = 4}, + [246] = {.index = 472, .length = 5}, + [247] = {.index = 477, .length = 4}, + [248] = {.index = 481, .length = 4}, + [249] = {.index = 485, .length = 3}, + [250] = {.index = 488, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3155,432 +3163,464 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_pattern, 1}, {field_value, 3}, [145] = + {field_alternative, 3}, + {field_pattern, 1}, + [147] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [148] = + [150] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [152] = + [154] = {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [155] = + [157] = {field_type, 3}, {field_type_parameters, 2}, - [157] = + [159] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [160] = + [162] = {field_body, 4}, {field_type, 2}, - [162] = + [164] = {field_body, 4}, {field_name, 2}, - [164] = + [166] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [167] = + [169] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [170] = + [172] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [173] = + [175] = {field_name, 0}, {field_value, 2}, - [175] = + [177] = {field_name, 2}, {field_parameters, 3}, - [177] = + [179] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [180] = + [182] = {field_name, 2}, {field_type_parameters, 3}, - [182] = + [184] = {field_body, 4}, {field_name, 3}, - [184] = + [186] = {field_name, 3}, - [185] = + [187] = {field_body, 4}, {field_condition, 3}, - [187] = + [189] = {field_length, 4}, - [188] = + [190] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [192] = + [194] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [195] = + [197] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [199] = + [201] = {field_name, 0}, {field_pattern, 2}, - [201] = + [203] = {field_name, 0}, {field_type, 2}, - [203] = + [205] = {field_consequence, 5}, {field_pattern, 2}, {field_value, 4}, - [206] = + [208] = {field_element, 1}, {field_length, 3}, - [208] = + [210] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [211] = + [213] = {field_parameters, 2}, {field_return_type, 4}, - [213] = + [215] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [216] = + [218] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [220] = + [222] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [223] = + [225] = {field_pattern, 2}, {field_type, 4}, - [225] = + [227] = {field_pattern, 2}, {field_value, 4}, - [227] = + [229] = + {field_alternative, 4}, + {field_pattern, 2}, + [231] = {field_pattern, 0}, {field_value, 2}, - [229] = + [233] = {field_condition, 2}, - [230] = + [234] = {field_name, 2}, {field_type, 4}, - [232] = + [236] = {field_type, 1}, {field_type, 2, .inherited = true}, - [234] = + [238] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [236] = + [240] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [240] = + [244] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [243] = + [247] = {field_trait, 2}, {field_type, 4}, - [245] = + [249] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [248] = + [252] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [251] = + [255] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [254] = + [258] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [257] = + [261] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [261] = + [265] = {field_body, 5}, {field_pattern, 2}, {field_value, 4}, - [264] = + [268] = {field_alias, 4}, {field_name, 2}, - [266] = + [270] = {field_name, 1}, {field_value, 3}, - [268] = + [272] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [271] = + [275] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [275] = + [279] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [278] = + [282] = {field_body, 5}, {field_name, 3}, - [280] = + [284] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [283] = + [287] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [286] = + [290] = {field_name, 3}, {field_parameters, 4}, - [288] = + [292] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [291] = + [295] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [294] = + [298] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [297] = + [301] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [301] = + [305] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [306] = + [310] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [310] = + [314] = {field_name, 1}, {field_pattern, 3}, - [312] = + [316] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [315] = + [319] = {field_alternative, 6}, {field_consequence, 5}, {field_pattern, 2}, {field_value, 4}, - [319] = + [323] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [323] = + [327] = {field_parameters, 3}, {field_return_type, 5}, - [325] = + [329] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [328] = + [332] = + {field_alternative, 5}, + {field_pattern, 1}, + {field_type, 3}, + [335] = + {field_alternative, 5}, + {field_pattern, 1}, + {field_value, 3}, + [338] = {field_name, 3}, {field_type, 5}, - [330] = + [340] = {field_type, 2}, {field_type, 3, .inherited = true}, - [332] = + [342] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [335] = + [345] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [338] = + [348] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [342] = + [352] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [346] = + [356] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [350] = + [360] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [353] = + [363] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [357] = + [367] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [360] = + [370] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [363] = + [373] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [366] = + [376] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [370] = + [380] = {field_alias, 5}, {field_name, 3}, - [372] = + [382] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [375] = + [385] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [379] = + [389] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [382] = + [392] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [385] = + [395] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [388] = + [398] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [393] = + [403] = {field_name, 2}, {field_pattern, 4}, - [395] = + [405] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [398] = + [408] = + {field_alternative, 6}, + {field_pattern, 2}, + {field_type, 4}, + [411] = + {field_alternative, 6}, + {field_pattern, 2}, + {field_value, 4}, + [414] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [401] = + [417] = {field_type, 3}, {field_type, 4, .inherited = true}, - [403] = + [419] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [407] = + [423] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [411] = + [427] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [416] = + [432] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [420] = + [436] = {field_name, 4}, {field_type, 6}, - [422] = + [438] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [426] = + [442] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [430] = + [446] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [433] = + [449] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [437] = + [453] = {field_body, 7}, {field_pattern, 4}, {field_value, 6}, - [440] = + [456] = + {field_alternative, 7}, + {field_pattern, 1}, + {field_type, 3}, + {field_value, 5}, + [460] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [443] = + [463] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [448] = + [468] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [452] = + [472] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [457] = + [477] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [461] = + [481] = + {field_alternative, 8}, + {field_pattern, 2}, + {field_type, 4}, + {field_value, 6}, + [485] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [464] = + [488] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3716,11 +3756,8 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [105] = { [0] = alias_sym_type_identifier, }, - [113] = { - [3] = sym_identifier, - }, [114] = { - [1] = alias_sym_type_identifier, + [3] = sym_identifier, }, [115] = { [1] = alias_sym_type_identifier, @@ -3731,8 +3768,8 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [117] = { [1] = alias_sym_type_identifier, }, - [121] = { - [2] = alias_sym_type_identifier, + [118] = { + [1] = alias_sym_type_identifier, }, [122] = { [2] = alias_sym_type_identifier, @@ -3741,123 +3778,126 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = alias_sym_type_identifier, }, [124] = { - [0] = sym_identifier, + [2] = alias_sym_type_identifier, }, [125] = { + [0] = sym_identifier, + }, + [126] = { [1] = sym_identifier, }, - [127] = { + [128] = { [0] = alias_sym_field_identifier, }, - [130] = { + [131] = { [2] = alias_sym_type_identifier, }, - [131] = { + [132] = { [3] = alias_sym_type_identifier, }, - [139] = { + [140] = { [2] = alias_sym_shorthand_field_identifier, }, - [140] = { + [141] = { [0] = alias_sym_field_identifier, }, - [141] = { + [142] = { [0] = alias_sym_type_identifier, }, - [144] = { + [145] = { [1] = alias_sym_type_identifier, }, - [146] = { + [147] = { [2] = alias_sym_type_identifier, }, - [147] = { + [148] = { [2] = alias_sym_type_identifier, }, - [150] = { + [151] = { [1] = alias_sym_type_identifier, }, - [160] = { + [162] = { [0] = alias_sym_field_identifier, }, - [161] = { + [163] = { [1] = alias_sym_type_identifier, }, - [162] = { + [164] = { [1] = alias_sym_type_identifier, }, - [163] = { + [165] = { [2] = alias_sym_type_identifier, }, - [164] = { + [166] = { [2] = alias_sym_type_identifier, }, - [168] = { + [170] = { [2] = alias_sym_type_identifier, }, - [169] = { + [171] = { [2] = alias_sym_type_identifier, }, - [170] = { + [172] = { [2] = alias_sym_type_identifier, }, - [173] = { + [175] = { [1] = alias_sym_field_identifier, }, - [177] = { + [179] = { [2] = alias_sym_type_identifier, }, - [178] = { + [180] = { [3] = alias_sym_type_identifier, }, - [179] = { + [181] = { [3] = alias_sym_type_identifier, }, - [180] = { + [182] = { [3] = alias_sym_type_identifier, }, - [190] = { + [192] = { [1] = alias_sym_field_identifier, }, - [191] = { + [193] = { [0] = alias_sym_type_identifier, }, - [193] = { + [195] = { [2] = alias_sym_type_identifier, }, - [199] = { + [203] = { [1] = alias_sym_field_identifier, }, - [200] = { + [204] = { [2] = alias_sym_type_identifier, }, - [201] = { + [205] = { [3] = alias_sym_type_identifier, }, - [202] = { + [206] = { [3] = alias_sym_type_identifier, }, - [206] = { + [210] = { [2] = alias_sym_type_identifier, }, - [210] = { + [214] = { [2] = alias_sym_type_identifier, }, - [211] = { + [215] = { [3] = alias_sym_type_identifier, }, - [212] = { + [216] = { [3] = alias_sym_type_identifier, }, - [213] = { + [217] = { [3] = alias_sym_type_identifier, }, - [221] = { + [225] = { [2] = alias_sym_field_identifier, }, - [225] = { + [231] = { [3] = alias_sym_type_identifier, }, - [231] = { + [237] = { [3] = alias_sym_type_identifier, }, }; @@ -3869,6 +3909,2639 @@ static const uint16_t ts_non_terminal_alias_map[] = { 0, }; +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 2, + [4] = 4, + [5] = 4, + [6] = 6, + [7] = 2, + [8] = 2, + [9] = 4, + [10] = 2, + [11] = 4, + [12] = 12, + [13] = 2, + [14] = 4, + [15] = 12, + [16] = 4, + [17] = 17, + [18] = 18, + [19] = 19, + [20] = 20, + [21] = 18, + [22] = 22, + [23] = 23, + [24] = 23, + [25] = 17, + [26] = 23, + [27] = 18, + [28] = 23, + [29] = 22, + [30] = 19, + [31] = 20, + [32] = 18, + [33] = 33, + [34] = 34, + [35] = 35, + [36] = 36, + [37] = 37, + [38] = 38, + [39] = 39, + [40] = 40, + [41] = 41, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 45, + [46] = 46, + [47] = 47, + [48] = 48, + [49] = 49, + [50] = 50, + [51] = 51, + [52] = 52, + [53] = 53, + [54] = 54, + [55] = 55, + [56] = 56, + [57] = 57, + [58] = 58, + [59] = 55, + [60] = 52, + [61] = 53, + [62] = 62, + [63] = 63, + [64] = 55, + [65] = 54, + [66] = 66, + [67] = 52, + [68] = 63, + [69] = 69, + [70] = 53, + [71] = 57, + [72] = 72, + [73] = 73, + [74] = 74, + [75] = 75, + [76] = 76, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 83, + [84] = 84, + [85] = 85, + [86] = 86, + [87] = 87, + [88] = 88, + [89] = 89, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 93, + [94] = 94, + [95] = 78, + [96] = 96, + [97] = 94, + [98] = 92, + [99] = 99, + [100] = 76, + [101] = 101, + [102] = 102, + [103] = 103, + [104] = 91, + [105] = 105, + [106] = 106, + [107] = 88, + [108] = 108, + [109] = 109, + [110] = 110, + [111] = 99, + [112] = 112, + [113] = 113, + [114] = 114, + [115] = 101, + [116] = 116, + [117] = 117, + [118] = 118, + [119] = 119, + [120] = 84, + [121] = 121, + [122] = 90, + [123] = 123, + [124] = 89, + [125] = 125, + [126] = 126, + [127] = 127, + [128] = 87, + [129] = 129, + [130] = 86, + [131] = 131, + [132] = 105, + [133] = 133, + [134] = 134, + [135] = 135, + [136] = 136, + [137] = 137, + [138] = 138, + [139] = 139, + [140] = 85, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 136, + [145] = 82, + [146] = 146, + [147] = 109, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 81, + [152] = 117, + [153] = 153, + [154] = 125, + [155] = 155, + [156] = 126, + [157] = 79, + [158] = 158, + [159] = 159, + [160] = 77, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 123, + [167] = 138, + [168] = 165, + [169] = 136, + [170] = 83, + [171] = 153, + [172] = 87, + [173] = 126, + [174] = 109, + [175] = 88, + [176] = 77, + [177] = 74, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 181, + [182] = 182, + [183] = 87, + [184] = 80, + [185] = 165, + [186] = 186, + [187] = 187, + [188] = 135, + [189] = 189, + [190] = 190, + [191] = 189, + [192] = 190, + [193] = 190, + [194] = 194, + [195] = 194, + [196] = 196, + [197] = 197, + [198] = 196, + [199] = 197, + [200] = 200, + [201] = 201, + [202] = 201, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 204, + [207] = 207, + [208] = 204, + [209] = 209, + [210] = 209, + [211] = 211, + [212] = 212, + [213] = 212, + [214] = 211, + [215] = 212, + [216] = 209, + [217] = 217, + [218] = 217, + [219] = 219, + [220] = 220, + [221] = 220, + [222] = 222, + [223] = 49, + [224] = 222, + [225] = 222, + [226] = 46, + [227] = 222, + [228] = 222, + [229] = 62, + [230] = 66, + [231] = 69, + [232] = 93, + [233] = 233, + [234] = 121, + [235] = 131, + [236] = 139, + [237] = 186, + [238] = 187, + [239] = 142, + [240] = 149, + [241] = 96, + [242] = 242, + [243] = 155, + [244] = 163, + [245] = 164, + [246] = 106, + [247] = 114, + [248] = 248, + [249] = 150, + [250] = 248, + [251] = 137, + [252] = 118, + [253] = 116, + [254] = 254, + [255] = 178, + [256] = 242, + [257] = 257, + [258] = 258, + [259] = 257, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 261, + [264] = 264, + [265] = 262, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 275, + [276] = 276, + [277] = 277, + [278] = 278, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 285, + [286] = 286, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 300, + [301] = 301, + [302] = 302, + [303] = 303, + [304] = 304, + [305] = 305, + [306] = 306, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 325, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 329, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 334, + [335] = 335, + [336] = 336, + [337] = 337, + [338] = 338, + [339] = 339, + [340] = 340, + [341] = 341, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 323, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 323, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 371, + [372] = 372, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 376, + [377] = 377, + [378] = 378, + [379] = 379, + [380] = 380, + [381] = 381, + [382] = 382, + [383] = 383, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 391, + [392] = 392, + [393] = 393, + [394] = 394, + [395] = 395, + [396] = 396, + [397] = 397, + [398] = 398, + [399] = 399, + [400] = 400, + [401] = 401, + [402] = 402, + [403] = 403, + [404] = 404, + [405] = 405, + [406] = 406, + [407] = 407, + [408] = 408, + [409] = 409, + [410] = 410, + [411] = 411, + [412] = 412, + [413] = 413, + [414] = 414, + [415] = 415, + [416] = 62, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 66, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 69, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 445, + [446] = 446, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 450, + [451] = 451, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 460, + [461] = 461, + [462] = 462, + [463] = 463, + [464] = 464, + [465] = 465, + [466] = 466, + [467] = 467, + [468] = 468, + [469] = 469, + [470] = 470, + [471] = 471, + [472] = 472, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 487, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 491, + [492] = 492, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 499, + [500] = 500, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 506, + [508] = 506, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 503, + [515] = 510, + [516] = 516, + [517] = 511, + [518] = 509, + [519] = 504, + [520] = 513, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 526, + [527] = 527, + [528] = 528, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 530, + [533] = 522, + [534] = 531, + [535] = 529, + [536] = 523, + [537] = 537, + [538] = 538, + [539] = 539, + [540] = 539, + [541] = 522, + [542] = 523, + [543] = 539, + [544] = 531, + [545] = 529, + [546] = 523, + [547] = 530, + [548] = 529, + [549] = 549, + [550] = 530, + [551] = 529, + [552] = 531, + [553] = 522, + [554] = 539, + [555] = 526, + [556] = 531, + [557] = 522, + [558] = 524, + [559] = 528, + [560] = 523, + [561] = 549, + [562] = 530, + [563] = 525, + [564] = 537, + [565] = 539, + [566] = 566, + [567] = 567, + [568] = 568, + [569] = 569, + [570] = 570, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 575, + [576] = 576, + [577] = 577, + [578] = 578, + [579] = 579, + [580] = 580, + [581] = 581, + [582] = 582, + [583] = 583, + [584] = 584, + [585] = 585, + [586] = 586, + [587] = 587, + [588] = 588, + [589] = 589, + [590] = 590, + [591] = 591, + [592] = 592, + [593] = 593, + [594] = 594, + [595] = 595, + [596] = 596, + [597] = 597, + [598] = 598, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 606, + [607] = 584, + [608] = 608, + [609] = 609, + [610] = 610, + [611] = 610, + [612] = 612, + [613] = 613, + [614] = 613, + [615] = 615, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 591, + [620] = 72, + [621] = 621, + [622] = 622, + [623] = 623, + [624] = 624, + [625] = 625, + [626] = 626, + [627] = 627, + [628] = 161, + [629] = 626, + [630] = 627, + [631] = 631, + [632] = 632, + [633] = 633, + [634] = 631, + [635] = 615, + [636] = 605, + [637] = 627, + [638] = 617, + [639] = 639, + [640] = 626, + [641] = 615, + [642] = 610, + [643] = 643, + [644] = 613, + [645] = 590, + [646] = 646, + [647] = 647, + [648] = 648, + [649] = 649, + [650] = 650, + [651] = 650, + [652] = 650, + [653] = 653, + [654] = 654, + [655] = 653, + [656] = 654, + [657] = 657, + [658] = 657, + [659] = 659, + [660] = 660, + [661] = 661, + [662] = 660, + [663] = 663, + [664] = 659, + [665] = 653, + [666] = 663, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 667, + [671] = 671, + [672] = 672, + [673] = 673, + [674] = 674, + [675] = 675, + [676] = 675, + [677] = 677, + [678] = 678, + [679] = 679, + [680] = 680, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 685, + [686] = 678, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 691, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 693, + [696] = 696, + [697] = 697, + [698] = 698, + [699] = 677, + [700] = 700, + [701] = 701, + [702] = 668, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 672, + [707] = 707, + [708] = 708, + [709] = 709, + [710] = 710, + [711] = 697, + [712] = 712, + [713] = 713, + [714] = 710, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 694, + [719] = 719, + [720] = 720, + [721] = 674, + [722] = 722, + [723] = 723, + [724] = 677, + [725] = 705, + [726] = 692, + [727] = 727, + [728] = 680, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 691, + [733] = 685, + [734] = 701, + [735] = 698, + [736] = 709, + [737] = 737, + [738] = 738, + [739] = 712, + [740] = 740, + [741] = 741, + [742] = 742, + [743] = 690, + [744] = 744, + [745] = 729, + [746] = 684, + [747] = 723, + [748] = 689, + [749] = 669, + [750] = 750, + [751] = 744, + [752] = 750, + [753] = 321, + [754] = 679, + [755] = 755, + [756] = 717, + [757] = 683, + [758] = 758, + [759] = 759, + [760] = 723, + [761] = 761, + [762] = 762, + [763] = 763, + [764] = 764, + [765] = 765, + [766] = 727, + [767] = 671, + [768] = 668, + [769] = 713, + [770] = 696, + [771] = 759, + [772] = 719, + [773] = 715, + [774] = 704, + [775] = 681, + [776] = 707, + [777] = 777, + [778] = 778, + [779] = 779, + [780] = 780, + [781] = 321, + [782] = 782, + [783] = 783, + [784] = 784, + [785] = 785, + [786] = 786, + [787] = 787, + [788] = 788, + [789] = 789, + [790] = 790, + [791] = 791, + [792] = 792, + [793] = 793, + [794] = 373, + [795] = 795, + [796] = 796, + [797] = 797, + [798] = 798, + [799] = 445, + [800] = 402, + [801] = 801, + [802] = 324, + [803] = 803, + [804] = 315, + [805] = 805, + [806] = 806, + [807] = 807, + [808] = 808, + [809] = 809, + [810] = 810, + [811] = 811, + [812] = 812, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 816, + [817] = 49, + [818] = 818, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 46, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 205, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 475, + [840] = 180, + [841] = 452, + [842] = 842, + [843] = 843, + [844] = 454, + [845] = 322, + [846] = 455, + [847] = 461, + [848] = 114, + [849] = 319, + [850] = 318, + [851] = 317, + [852] = 852, + [853] = 316, + [854] = 313, + [855] = 855, + [856] = 856, + [857] = 462, + [858] = 858, + [859] = 859, + [860] = 465, + [861] = 471, + [862] = 312, + [863] = 311, + [864] = 864, + [865] = 304, + [866] = 492, + [867] = 301, + [868] = 868, + [869] = 869, + [870] = 493, + [871] = 871, + [872] = 116, + [873] = 118, + [874] = 270, + [875] = 271, + [876] = 274, + [877] = 269, + [878] = 494, + [879] = 272, + [880] = 281, + [881] = 72, + [882] = 268, + [883] = 351, + [884] = 273, + [885] = 885, + [886] = 278, + [887] = 327, + [888] = 137, + [889] = 288, + [890] = 328, + [891] = 290, + [892] = 292, + [893] = 333, + [894] = 293, + [895] = 334, + [896] = 498, + [897] = 294, + [898] = 296, + [899] = 307, + [900] = 310, + [901] = 335, + [902] = 902, + [903] = 336, + [904] = 320, + [905] = 343, + [906] = 344, + [907] = 329, + [908] = 186, + [909] = 330, + [910] = 331, + [911] = 911, + [912] = 337, + [913] = 350, + [914] = 340, + [915] = 482, + [916] = 341, + [917] = 342, + [918] = 345, + [919] = 346, + [920] = 348, + [921] = 360, + [922] = 478, + [923] = 361, + [924] = 266, + [925] = 367, + [926] = 446, + [927] = 355, + [928] = 357, + [929] = 476, + [930] = 359, + [931] = 150, + [932] = 267, + [933] = 369, + [934] = 399, + [935] = 370, + [936] = 372, + [937] = 474, + [938] = 938, + [939] = 375, + [940] = 377, + [941] = 378, + [942] = 403, + [943] = 459, + [944] = 407, + [945] = 384, + [946] = 946, + [947] = 947, + [948] = 385, + [949] = 949, + [950] = 388, + [951] = 389, + [952] = 390, + [953] = 391, + [954] = 410, + [955] = 418, + [956] = 392, + [957] = 393, + [958] = 449, + [959] = 106, + [960] = 401, + [961] = 419, + [962] = 426, + [963] = 963, + [964] = 425, + [965] = 965, + [966] = 420, + [967] = 967, + [968] = 413, + [969] = 421, + [970] = 970, + [971] = 971, + [972] = 155, + [973] = 973, + [974] = 423, + [975] = 424, + [976] = 427, + [977] = 62, + [978] = 66, + [979] = 275, + [980] = 438, + [981] = 981, + [982] = 440, + [983] = 983, + [984] = 428, + [985] = 429, + [986] = 986, + [987] = 430, + [988] = 69, + [989] = 431, + [990] = 432, + [991] = 433, + [992] = 992, + [993] = 448, + [994] = 994, + [995] = 434, + [996] = 435, + [997] = 450, + [998] = 437, + [999] = 439, + [1000] = 441, + [1001] = 467, + [1002] = 164, + [1003] = 444, + [1004] = 161, + [1005] = 72, + [1006] = 62, + [1007] = 497, + [1008] = 500, + [1009] = 1009, + [1010] = 161, + [1011] = 411, + [1012] = 409, + [1013] = 321, + [1014] = 1014, + [1015] = 180, + [1016] = 119, + [1017] = 408, + [1018] = 405, + [1019] = 584, + [1020] = 1020, + [1021] = 1021, + [1022] = 605, + [1023] = 483, + [1024] = 404, + [1025] = 1025, + [1026] = 590, + [1027] = 1027, + [1028] = 394, + [1029] = 1029, + [1030] = 469, + [1031] = 468, + [1032] = 447, + [1033] = 456, + [1034] = 386, + [1035] = 457, + [1036] = 458, + [1037] = 1037, + [1038] = 460, + [1039] = 451, + [1040] = 463, + [1041] = 382, + [1042] = 1042, + [1043] = 1043, + [1044] = 464, + [1045] = 187, + [1046] = 466, + [1047] = 470, + [1048] = 473, + [1049] = 406, + [1050] = 387, + [1051] = 383, + [1052] = 487, + [1053] = 491, + [1054] = 178, + [1055] = 379, + [1056] = 495, + [1057] = 374, + [1058] = 371, + [1059] = 365, + [1060] = 499, + [1061] = 364, + [1062] = 142, + [1063] = 358, + [1064] = 1064, + [1065] = 69, + [1066] = 501, + [1067] = 496, + [1068] = 490, + [1069] = 489, + [1070] = 366, + [1071] = 349, + [1072] = 488, + [1073] = 486, + [1074] = 347, + [1075] = 363, + [1076] = 485, + [1077] = 484, + [1078] = 308, + [1079] = 481, + [1080] = 480, + [1081] = 479, + [1082] = 477, + [1083] = 1083, + [1084] = 472, + [1085] = 453, + [1086] = 1086, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, + [1091] = 1091, + [1092] = 93, + [1093] = 417, + [1094] = 354, + [1095] = 415, + [1096] = 1096, + [1097] = 414, + [1098] = 412, + [1099] = 325, + [1100] = 400, + [1101] = 1101, + [1102] = 398, + [1103] = 396, + [1104] = 352, + [1105] = 1105, + [1106] = 395, + [1107] = 96, + [1108] = 1108, + [1109] = 131, + [1110] = 139, + [1111] = 381, + [1112] = 380, + [1113] = 277, + [1114] = 1114, + [1115] = 376, + [1116] = 276, + [1117] = 119, + [1118] = 1118, + [1119] = 121, + [1120] = 279, + [1121] = 66, + [1122] = 1122, + [1123] = 368, + [1124] = 1124, + [1125] = 353, + [1126] = 280, + [1127] = 1127, + [1128] = 1128, + [1129] = 591, + [1130] = 339, + [1131] = 1131, + [1132] = 338, + [1133] = 332, + [1134] = 326, + [1135] = 314, + [1136] = 309, + [1137] = 282, + [1138] = 283, + [1139] = 1139, + [1140] = 284, + [1141] = 285, + [1142] = 286, + [1143] = 1143, + [1144] = 306, + [1145] = 305, + [1146] = 1146, + [1147] = 442, + [1148] = 443, + [1149] = 287, + [1150] = 303, + [1151] = 1151, + [1152] = 302, + [1153] = 300, + [1154] = 289, + [1155] = 149, + [1156] = 299, + [1157] = 298, + [1158] = 297, + [1159] = 291, + [1160] = 163, + [1161] = 295, + [1162] = 1162, + [1163] = 1163, + [1164] = 1164, + [1165] = 1165, + [1166] = 1166, + [1167] = 1167, + [1168] = 1168, + [1169] = 1169, + [1170] = 1170, + [1171] = 1171, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, + [1175] = 649, + [1176] = 1176, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 1187, + [1188] = 1188, + [1189] = 1189, + [1190] = 1190, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 788, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1105, + [1200] = 321, + [1201] = 1201, + [1202] = 1198, + [1203] = 1203, + [1204] = 1204, + [1205] = 1201, + [1206] = 788, + [1207] = 1207, + [1208] = 1208, + [1209] = 1209, + [1210] = 807, + [1211] = 1211, + [1212] = 1212, + [1213] = 801, + [1214] = 1214, + [1215] = 798, + [1216] = 1216, + [1217] = 807, + [1218] = 1218, + [1219] = 1219, + [1220] = 1220, + [1221] = 1221, + [1222] = 1222, + [1223] = 796, + [1224] = 793, + [1225] = 805, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 825, + [1230] = 1228, + [1231] = 1231, + [1232] = 911, + [1233] = 828, + [1234] = 1037, + [1235] = 1235, + [1236] = 1236, + [1237] = 1237, + [1238] = 1238, + [1239] = 1239, + [1240] = 1240, + [1241] = 1241, + [1242] = 1242, + [1243] = 1243, + [1244] = 1244, + [1245] = 1236, + [1246] = 1241, + [1247] = 1243, + [1248] = 1248, + [1249] = 1249, + [1250] = 1244, + [1251] = 1251, + [1252] = 1252, + [1253] = 1238, + [1254] = 1254, + [1255] = 1241, + [1256] = 1256, + [1257] = 1257, + [1258] = 1256, + [1259] = 1259, + [1260] = 1260, + [1261] = 1236, + [1262] = 1262, + [1263] = 1263, + [1264] = 1264, + [1265] = 1265, + [1266] = 1266, + [1267] = 1257, + [1268] = 1262, + [1269] = 1188, + [1270] = 1192, + [1271] = 1271, + [1272] = 1272, + [1273] = 1273, + [1274] = 1274, + [1275] = 1275, + [1276] = 1266, + [1277] = 1277, + [1278] = 1272, + [1279] = 1240, + [1280] = 1171, + [1281] = 1265, + [1282] = 1185, + [1283] = 1283, + [1284] = 1284, + [1285] = 1187, + [1286] = 1162, + [1287] = 1251, + [1288] = 1236, + [1289] = 1241, + [1290] = 1169, + [1291] = 1163, + [1292] = 1177, + [1293] = 1174, + [1294] = 1236, + [1295] = 1241, + [1296] = 1164, + [1297] = 1170, + [1298] = 1266, + [1299] = 1168, + [1300] = 1167, + [1301] = 1248, + [1302] = 1302, + [1303] = 1236, + [1304] = 1184, + [1305] = 1243, + [1306] = 1306, + [1307] = 1251, + [1308] = 1191, + [1309] = 1263, + [1310] = 1263, + [1311] = 1257, + [1312] = 1166, + [1313] = 1238, + [1314] = 1314, + [1315] = 1189, + [1316] = 1262, + [1317] = 1241, + [1318] = 1172, + [1319] = 1173, + [1320] = 1244, + [1321] = 1240, + [1322] = 1322, + [1323] = 1323, + [1324] = 1324, + [1325] = 1325, + [1326] = 1326, + [1327] = 1327, + [1328] = 1328, + [1329] = 1329, + [1330] = 1330, + [1331] = 1331, + [1332] = 1323, + [1333] = 1326, + [1334] = 1334, + [1335] = 1335, + [1336] = 1336, + [1337] = 1334, + [1338] = 1338, + [1339] = 1324, + [1340] = 1340, + [1341] = 1325, + [1342] = 1342, + [1343] = 1343, + [1344] = 1322, + [1345] = 1345, + [1346] = 1346, + [1347] = 1347, + [1348] = 1342, + [1349] = 1349, + [1350] = 1350, + [1351] = 1350, + [1352] = 1352, + [1353] = 1353, + [1354] = 1352, + [1355] = 1355, + [1356] = 1356, + [1357] = 1357, + [1358] = 1358, + [1359] = 1358, + [1360] = 584, + [1361] = 605, + [1362] = 1362, + [1363] = 782, + [1364] = 786, + [1365] = 789, + [1366] = 786, + [1367] = 790, + [1368] = 783, + [1369] = 787, + [1370] = 790, + [1371] = 784, + [1372] = 787, + [1373] = 789, + [1374] = 785, + [1375] = 792, + [1376] = 791, + [1377] = 1377, + [1378] = 1378, + [1379] = 1379, + [1380] = 821, + [1381] = 119, + [1382] = 180, + [1383] = 1383, + [1384] = 1384, + [1385] = 161, + [1386] = 72, + [1387] = 1384, + [1388] = 820, + [1389] = 1227, + [1390] = 811, + [1391] = 1105, + [1392] = 814, + [1393] = 816, + [1394] = 815, + [1395] = 819, + [1396] = 1396, + [1397] = 1219, + [1398] = 1216, + [1399] = 1399, + [1400] = 832, + [1401] = 835, + [1402] = 812, + [1403] = 806, + [1404] = 838, + [1405] = 837, + [1406] = 834, + [1407] = 1399, + [1408] = 1220, + [1409] = 808, + [1410] = 833, + [1411] = 590, + [1412] = 810, + [1413] = 1413, + [1414] = 827, + [1415] = 809, + [1416] = 1399, + [1417] = 831, + [1418] = 818, + [1419] = 1419, + [1420] = 836, + [1421] = 813, + [1422] = 949, + [1423] = 864, + [1424] = 868, + [1425] = 1108, + [1426] = 986, + [1427] = 1427, + [1428] = 983, + [1429] = 981, + [1430] = 1430, + [1431] = 871, + [1432] = 947, + [1433] = 1143, + [1434] = 852, + [1435] = 1124, + [1436] = 1083, + [1437] = 1096, + [1438] = 803, + [1439] = 992, + [1440] = 963, + [1441] = 1101, + [1442] = 965, + [1443] = 967, + [1444] = 1131, + [1445] = 971, + [1446] = 994, + [1447] = 1447, + [1448] = 869, + [1449] = 1449, + [1450] = 1450, + [1451] = 1451, + [1452] = 1452, + [1453] = 1453, + [1454] = 62, + [1455] = 1455, + [1456] = 1456, + [1457] = 1457, + [1458] = 1458, + [1459] = 1459, + [1460] = 66, + [1461] = 69, + [1462] = 1462, + [1463] = 1463, + [1464] = 1464, + [1465] = 787, + [1466] = 789, + [1467] = 790, + [1468] = 786, + [1469] = 1469, + [1470] = 1470, + [1471] = 787, + [1472] = 1472, + [1473] = 1473, + [1474] = 1474, + [1475] = 1475, + [1476] = 1476, + [1477] = 1477, + [1478] = 1478, + [1479] = 1479, + [1480] = 1480, + [1481] = 1481, + [1482] = 1482, + [1483] = 787, + [1484] = 1484, + [1485] = 786, + [1486] = 789, + [1487] = 1487, + [1488] = 790, + [1489] = 1489, + [1490] = 790, + [1491] = 1491, + [1492] = 786, + [1493] = 96, + [1494] = 1494, + [1495] = 1495, + [1496] = 1496, + [1497] = 789, + [1498] = 1498, + [1499] = 1499, + [1500] = 1500, + [1501] = 1501, + [1502] = 1502, + [1503] = 1503, + [1504] = 1504, + [1505] = 1505, + [1506] = 1506, + [1507] = 1506, + [1508] = 1508, + [1509] = 1509, + [1510] = 1510, + [1511] = 1509, + [1512] = 1512, + [1513] = 1508, + [1514] = 1514, + [1515] = 1510, + [1516] = 1512, + [1517] = 1514, + [1518] = 1505, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1519, + [1523] = 1523, + [1524] = 1519, + [1525] = 1525, + [1526] = 1526, + [1527] = 1527, + [1528] = 1520, + [1529] = 1525, + [1530] = 1383, + [1531] = 1531, + [1532] = 1532, + [1533] = 1533, + [1534] = 1534, + [1535] = 1535, + [1536] = 1536, + [1537] = 1537, + [1538] = 1538, + [1539] = 1539, + [1540] = 1540, + [1541] = 1536, + [1542] = 1542, + [1543] = 1543, + [1544] = 1531, + [1545] = 1534, + [1546] = 1546, + [1547] = 1547, + [1548] = 1548, + [1549] = 1535, + [1550] = 1548, + [1551] = 1551, + [1552] = 1552, + [1553] = 1553, + [1554] = 1533, + [1555] = 1555, + [1556] = 1556, + [1557] = 1539, + [1558] = 1532, + [1559] = 1543, + [1560] = 1560, + [1561] = 1556, + [1562] = 1552, + [1563] = 1546, + [1564] = 1537, + [1565] = 1542, + [1566] = 1551, + [1567] = 1567, + [1568] = 1560, + [1569] = 1567, + [1570] = 1555, + [1571] = 1571, + [1572] = 1572, + [1573] = 1573, + [1574] = 1574, + [1575] = 1575, + [1576] = 1576, + [1577] = 1574, + [1578] = 1578, + [1579] = 1579, + [1580] = 1580, + [1581] = 1581, + [1582] = 1582, + [1583] = 1583, + [1584] = 1584, + [1585] = 1585, + [1586] = 1586, + [1587] = 1587, + [1588] = 1588, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, + [1592] = 1578, + [1593] = 1593, + [1594] = 1593, + [1595] = 1590, + [1596] = 1596, + [1597] = 1597, + [1598] = 1383, + [1599] = 1599, + [1600] = 1600, + [1601] = 1587, + [1602] = 1573, + [1603] = 1591, + [1604] = 1604, + [1605] = 1605, + [1606] = 1606, + [1607] = 1607, + [1608] = 1608, + [1609] = 1587, + [1610] = 1610, + [1611] = 1581, + [1612] = 1612, + [1613] = 1613, + [1614] = 1614, + [1615] = 1615, + [1616] = 1616, + [1617] = 1617, + [1618] = 1618, + [1619] = 1619, + [1620] = 1620, + [1621] = 1621, + [1622] = 1622, + [1623] = 1623, + [1624] = 1624, + [1625] = 1383, + [1626] = 1620, + [1627] = 1627, + [1628] = 1628, + [1629] = 1628, + [1630] = 1630, + [1631] = 1612, + [1632] = 1632, + [1633] = 1633, + [1634] = 1634, + [1635] = 1627, + [1636] = 1636, + [1637] = 1637, + [1638] = 1638, + [1639] = 1639, + [1640] = 1621, + [1641] = 1641, + [1642] = 1642, + [1643] = 1643, + [1644] = 1644, + [1645] = 1617, + [1646] = 1637, + [1647] = 1624, + [1648] = 1648, + [1649] = 1618, + [1650] = 1644, + [1651] = 1623, + [1652] = 1619, + [1653] = 1653, + [1654] = 1654, + [1655] = 1655, + [1656] = 1656, + [1657] = 1639, + [1658] = 1658, + [1659] = 1659, + [1660] = 1660, + [1661] = 1661, + [1662] = 1662, + [1663] = 1663, + [1664] = 1664, + [1665] = 1665, + [1666] = 1666, + [1667] = 1667, + [1668] = 1668, + [1669] = 1669, + [1670] = 1670, + [1671] = 1671, + [1672] = 1672, + [1673] = 1668, + [1674] = 1669, + [1675] = 1675, + [1676] = 1670, + [1677] = 1677, + [1678] = 1678, + [1679] = 1679, + [1680] = 1680, + [1681] = 1662, + [1682] = 1682, + [1683] = 1683, + [1684] = 1661, + [1685] = 1685, + [1686] = 1686, + [1687] = 1687, + [1688] = 1677, + [1689] = 1663, + [1690] = 1690, + [1691] = 1678, + [1692] = 1692, + [1693] = 1693, + [1694] = 1694, + [1695] = 1695, + [1696] = 1692, + [1697] = 1697, + [1698] = 1683, + [1699] = 1675, + [1700] = 1700, + [1701] = 1685, + [1702] = 1702, + [1703] = 1703, + [1704] = 1704, + [1705] = 1682, + [1706] = 1706, + [1707] = 1707, + [1708] = 1708, + [1709] = 1709, + [1710] = 1710, + [1711] = 1711, + [1712] = 1690, + [1713] = 1713, + [1714] = 1714, + [1715] = 1715, + [1716] = 1710, + [1717] = 1717, + [1718] = 1718, + [1719] = 1700, + [1720] = 1702, + [1721] = 1721, + [1722] = 1722, + [1723] = 1677, + [1724] = 1679, + [1725] = 1671, + [1726] = 1709, + [1727] = 1715, + [1728] = 1660, + [1729] = 1686, + [1730] = 1730, + [1731] = 1731, + [1732] = 1665, + [1733] = 1694, + [1734] = 1706, + [1735] = 1718, + [1736] = 1731, + [1737] = 1664, + [1738] = 1658, + [1739] = 1739, + [1740] = 1740, + [1741] = 1722, + [1742] = 1667, + [1743] = 1721, + [1744] = 1714, + [1745] = 1666, + [1746] = 1740, + [1747] = 1672, + [1748] = 1679, + [1749] = 1730, + [1750] = 1708, + [1751] = 1695, + [1752] = 1703, + [1753] = 1710, + [1754] = 1178, + [1755] = 1755, + [1756] = 1756, + [1757] = 1757, + [1758] = 1758, + [1759] = 1759, + [1760] = 1760, + [1761] = 1761, + [1762] = 1759, + [1763] = 1758, + [1764] = 1764, + [1765] = 1765, + [1766] = 1183, + [1767] = 1182, + [1768] = 1768, + [1769] = 1760, + [1770] = 1770, + [1771] = 1165, + [1772] = 1755, + [1773] = 1773, + [1774] = 1774, + [1775] = 1756, + [1776] = 1776, + [1777] = 1777, + [1778] = 1778, + [1779] = 1779, + [1780] = 1780, + [1781] = 1777, + [1782] = 1761, + [1783] = 1783, + [1784] = 1784, + [1785] = 1785, + [1786] = 1759, + [1787] = 1787, + [1788] = 1760, + [1789] = 1789, + [1790] = 1790, + [1791] = 1186, + [1792] = 1756, + [1793] = 1180, + [1794] = 1794, + [1795] = 1757, + [1796] = 1796, + [1797] = 1768, + [1798] = 1798, + [1799] = 1777, + [1800] = 1794, + [1801] = 1801, + [1802] = 1802, + [1803] = 1803, + [1804] = 1790, + [1805] = 1805, + [1806] = 1806, + [1807] = 1807, + [1808] = 1796, + [1809] = 1809, + [1810] = 1790, + [1811] = 1811, + [1812] = 1812, + [1813] = 1813, + [1814] = 1814, + [1815] = 1815, + [1816] = 1816, + [1817] = 1817, + [1818] = 1815, + [1819] = 1819, + [1820] = 1820, + [1821] = 1821, + [1822] = 1822, + [1823] = 1823, + [1824] = 1824, + [1825] = 1825, + [1826] = 1826, + [1827] = 1827, + [1828] = 1828, + [1829] = 1829, + [1830] = 1830, + [1831] = 1831, + [1832] = 1832, + [1833] = 1833, + [1834] = 1834, + [1835] = 1835, + [1836] = 1813, + [1837] = 1837, + [1838] = 1838, + [1839] = 1839, + [1840] = 1840, + [1841] = 1826, + [1842] = 1822, + [1843] = 1823, + [1844] = 1844, + [1845] = 1845, + [1846] = 1846, + [1847] = 1830, + [1848] = 1848, + [1849] = 1840, + [1850] = 1850, + [1851] = 1851, + [1852] = 1852, + [1853] = 1853, + [1854] = 1825, + [1855] = 1831, + [1856] = 1856, + [1857] = 1817, + [1858] = 1858, + [1859] = 1859, + [1860] = 1830, + [1861] = 1839, + [1862] = 1862, + [1863] = 1863, + [1864] = 1838, + [1865] = 1845, + [1866] = 1824, + [1867] = 1824, + [1868] = 1868, + [1869] = 1869, + [1870] = 1825, + [1871] = 1816, + [1872] = 1858, + [1873] = 1820, + [1874] = 1874, + [1875] = 1832, + [1876] = 1876, + [1877] = 1837, + [1878] = 1856, + [1879] = 1879, + [1880] = 1830, + [1881] = 1881, + [1882] = 1882, + [1883] = 1817, + [1884] = 1884, + [1885] = 1863, + [1886] = 1886, + [1887] = 1887, + [1888] = 1888, + [1889] = 1889, + [1890] = 1829, + [1891] = 1891, + [1892] = 1820, + [1893] = 1820, + [1894] = 1894, + [1895] = 1895, + [1896] = 1896, + [1897] = 1824, + [1898] = 1825, + [1899] = 1886, + [1900] = 1900, + [1901] = 1833, + [1902] = 1817, + [1903] = 1903, + [1904] = 1904, + [1905] = 1904, + [1906] = 1906, + [1907] = 1900, + [1908] = 1908, + [1909] = 1834, + [1910] = 1848, + [1911] = 1906, + [1912] = 1912, + [1913] = 1913, + [1914] = 1914, + [1915] = 1915, + [1916] = 1916, + [1917] = 1917, + [1918] = 1918, + [1919] = 1919, + [1920] = 1920, + [1921] = 1921, + [1922] = 1920, + [1923] = 1923, + [1924] = 1924, + [1925] = 1925, + [1926] = 1926, + [1927] = 1927, + [1928] = 1928, + [1929] = 1929, + [1930] = 1930, + [1931] = 586, + [1932] = 1925, + [1933] = 1933, + [1934] = 1934, + [1935] = 1935, + [1936] = 1936, + [1937] = 1937, + [1938] = 1938, + [1939] = 1939, + [1940] = 1940, + [1941] = 1941, + [1942] = 1942, + [1943] = 1943, + [1944] = 1944, + [1945] = 1945, + [1946] = 1946, + [1947] = 1947, + [1948] = 1948, + [1949] = 1949, + [1950] = 1950, + [1951] = 1939, + [1952] = 1952, + [1953] = 1953, + [1954] = 1954, + [1955] = 1955, + [1956] = 1956, + [1957] = 1957, + [1958] = 1958, + [1959] = 1959, + [1960] = 596, + [1961] = 1961, + [1962] = 1962, + [1963] = 1963, + [1964] = 1936, + [1965] = 1965, + [1966] = 1966, + [1967] = 1967, + [1968] = 1939, + [1969] = 1969, + [1970] = 1970, + [1971] = 1971, + [1972] = 1972, + [1973] = 1973, + [1974] = 1974, + [1975] = 1975, + [1976] = 1976, + [1977] = 1977, + [1978] = 1978, + [1979] = 1979, + [1980] = 1980, + [1981] = 1981, + [1982] = 1982, + [1983] = 1983, + [1984] = 1984, + [1985] = 1985, + [1986] = 1986, + [1987] = 1987, + [1988] = 1988, + [1989] = 1989, + [1990] = 1990, + [1991] = 1991, + [1992] = 1992, + [1993] = 1993, + [1994] = 1994, + [1995] = 1995, + [1996] = 1996, + [1997] = 1997, + [1998] = 1959, + [1999] = 1946, + [2000] = 2000, + [2001] = 2001, + [2002] = 2002, + [2003] = 2003, + [2004] = 2004, + [2005] = 2005, + [2006] = 2006, + [2007] = 2007, + [2008] = 2008, + [2009] = 1939, + [2010] = 2010, + [2011] = 2011, + [2012] = 2012, + [2013] = 2013, + [2014] = 1956, + [2015] = 2015, + [2016] = 2016, + [2017] = 2017, + [2018] = 2018, + [2019] = 2019, + [2020] = 2020, + [2021] = 2021, + [2022] = 2000, + [2023] = 2023, + [2024] = 2024, + [2025] = 2025, + [2026] = 2026, + [2027] = 2027, + [2028] = 2020, + [2029] = 2029, + [2030] = 2023, + [2031] = 2031, + [2032] = 2032, + [2033] = 2033, + [2034] = 2034, + [2035] = 2034, + [2036] = 2036, + [2037] = 2037, + [2038] = 2020, + [2039] = 2023, + [2040] = 2040, + [2041] = 1918, + [2042] = 2042, + [2043] = 2043, + [2044] = 2044, + [2045] = 2045, + [2046] = 2046, + [2047] = 2047, + [2048] = 2048, + [2049] = 2040, + [2050] = 1946, + [2051] = 2051, + [2052] = 2020, + [2053] = 2023, + [2054] = 2023, + [2055] = 2055, + [2056] = 2056, + [2057] = 2057, + [2058] = 2020, + [2059] = 1981, + [2060] = 2060, + [2061] = 1962, + [2062] = 1916, + [2063] = 1953, + [2064] = 2064, + [2065] = 2065, + [2066] = 1926, + [2067] = 2067, + [2068] = 2068, + [2069] = 1963, + [2070] = 2070, + [2071] = 2071, + [2072] = 2072, + [2073] = 1933, + [2074] = 2074, + [2075] = 2046, + [2076] = 2076, + [2077] = 2077, + [2078] = 1919, + [2079] = 2079, + [2080] = 2080, + [2081] = 2081, + [2082] = 2082, + [2083] = 2083, + [2084] = 1944, + [2085] = 2085, + [2086] = 2086, + [2087] = 2087, + [2088] = 2088, + [2089] = 2089, + [2090] = 1961, + [2091] = 2091, + [2092] = 1937, + [2093] = 2093, + [2094] = 1972, + [2095] = 1982, + [2096] = 1984, + [2097] = 1989, + [2098] = 2023, + [2099] = 1995, + [2100] = 2068, + [2101] = 2001, + [2102] = 2003, + [2103] = 2103, + [2104] = 2027, + [2105] = 2105, + [2106] = 2106, + [2107] = 1943, + [2108] = 2108, + [2109] = 2109, + [2110] = 2110, + [2111] = 2032, + [2112] = 1948, + [2113] = 2113, + [2114] = 2044, + [2115] = 2115, + [2116] = 2116, + [2117] = 2117, + [2118] = 2118, + [2119] = 1965, + [2120] = 2120, + [2121] = 2121, + [2122] = 1969, + [2123] = 2057, + [2124] = 2064, + [2125] = 1983, + [2126] = 2020, + [2127] = 2065, + [2128] = 2128, + [2129] = 1988, + [2130] = 2060, + [2131] = 1997, + [2132] = 2132, + [2133] = 2007, + [2134] = 2093, + [2135] = 2135, + [2136] = 2011, + [2137] = 2105, + [2138] = 2116, + [2139] = 2139, + [2140] = 2121, + [2141] = 2141, + [2142] = 2132, + [2143] = 2143, + [2144] = 2135, + [2145] = 2145, + [2146] = 2146, + [2147] = 2029, + [2148] = 2086, + [2149] = 2036, + [2150] = 2150, + [2151] = 2043, + [2152] = 2152, + [2153] = 2091, + [2154] = 2154, + [2155] = 2155, + [2156] = 2156, + [2157] = 2150, + [2158] = 2158, + [2159] = 2159, + [2160] = 2067, + [2161] = 2161, + [2162] = 2162, + [2163] = 2163, + [2164] = 2164, + [2165] = 2164, + [2166] = 2163, + [2167] = 2081, + [2168] = 2120, + [2169] = 2169, + [2170] = 2170, + [2171] = 2154, + [2172] = 2159, + [2173] = 2156, + [2174] = 2174, + [2175] = 2175, + [2176] = 2176, + [2177] = 2177, + [2178] = 2178, + [2179] = 2179, + [2180] = 2180, + [2181] = 2181, + [2182] = 2182, + [2183] = 2183, + [2184] = 2184, + [2185] = 2185, + [2186] = 2186, + [2187] = 2187, + [2188] = 1096, + [2189] = 2189, + [2190] = 2182, + [2191] = 2191, + [2192] = 2192, + [2193] = 2193, + [2194] = 2194, + [2195] = 2195, + [2196] = 2196, + [2197] = 2197, + [2198] = 2198, + [2199] = 2199, + [2200] = 2200, + [2201] = 2201, + [2202] = 2202, + [2203] = 2203, + [2204] = 2204, + [2205] = 2205, + [2206] = 2175, + [2207] = 2207, + [2208] = 2208, + [2209] = 2209, + [2210] = 2210, + [2211] = 2201, + [2212] = 2207, + [2213] = 2180, + [2214] = 2214, + [2215] = 2215, + [2216] = 2216, + [2217] = 2217, + [2218] = 2218, + [2219] = 2199, + [2220] = 2220, + [2221] = 2221, + [2222] = 2222, + [2223] = 2208, + [2224] = 2224, + [2225] = 2225, + [2226] = 2226, + [2227] = 2207, + [2228] = 2177, + [2229] = 2229, + [2230] = 2230, + [2231] = 2183, + [2232] = 2232, + [2233] = 2233, + [2234] = 2234, + [2235] = 2235, + [2236] = 2236, + [2237] = 965, + [2238] = 2209, + [2239] = 963, + [2240] = 2184, + [2241] = 2209, + [2242] = 2242, + [2243] = 2243, + [2244] = 2187, + [2245] = 2245, + [2246] = 2246, + [2247] = 2185, + [2248] = 2210, + [2249] = 2249, + [2250] = 2250, + [2251] = 2181, + [2252] = 2230, + [2253] = 591, + [2254] = 2254, + [2255] = 2220, + [2256] = 2256, + [2257] = 2249, + [2258] = 2258, + [2259] = 2259, + [2260] = 868, + [2261] = 2261, + [2262] = 2262, + [2263] = 2192, + [2264] = 2216, + [2265] = 2217, + [2266] = 2266, + [2267] = 2267, + [2268] = 2268, + [2269] = 2269, + [2270] = 2270, + [2271] = 2271, + [2272] = 2272, + [2273] = 2273, + [2274] = 2221, + [2275] = 2275, + [2276] = 2222, + [2277] = 2254, + [2278] = 2278, + [2279] = 2279, + [2280] = 2243, + [2281] = 2281, + [2282] = 2282, + [2283] = 2283, + [2284] = 2246, + [2285] = 2285, + [2286] = 2286, + [2287] = 2287, + [2288] = 2288, + [2289] = 2289, + [2290] = 2290, + [2291] = 2291, + [2292] = 2292, + [2293] = 2245, + [2294] = 2294, + [2295] = 2236, + [2296] = 2215, + [2297] = 2189, + [2298] = 2178, + [2299] = 2299, + [2300] = 2226, + [2301] = 2229, + [2302] = 2273, + [2303] = 2303, + [2304] = 2191, + [2305] = 2272, + [2306] = 2281, + [2307] = 2307, + [2308] = 2194, + [2309] = 2186, + [2310] = 2214, + [2311] = 2285, + [2312] = 2232, + [2313] = 2174, + [2314] = 2291, + [2315] = 2233, + [2316] = 2316, + [2317] = 2234, + [2318] = 2250, + [2319] = 2319, + [2320] = 2235, + [2321] = 2321, + [2322] = 2289, + [2323] = 2323, + [2324] = 2210, + [2325] = 2325, + [2326] = 2201, + [2327] = 2327, + [2328] = 2328, + [2329] = 2208, + [2330] = 2330, + [2331] = 2267, + [2332] = 2224, + [2333] = 2307, + [2334] = 2192, + [2335] = 2193, + [2336] = 2336, + [2337] = 2337, + [2338] = 2338, + [2339] = 2290, + [2340] = 2299, + [2341] = 2341, + [2342] = 2195, + [2343] = 2319, + [2344] = 2186, + [2345] = 2345, + [2346] = 2261, + [2347] = 2285, + [2348] = 2348, + [2349] = 2286, + [2350] = 2196, + [2351] = 2287, + [2352] = 2288, + [2353] = 2198, + [2354] = 1632, + [2355] = 2336, + [2356] = 2197, + [2357] = 2357, + [2358] = 2358, + [2359] = 2359, + [2360] = 2345, + [2361] = 2218, + [2362] = 2330, + [2363] = 2292, + [2364] = 2364, + [2365] = 2282, + [2366] = 2283, + [2367] = 2367, + [2368] = 2202, + [2369] = 2203, + [2370] = 2242, + [2371] = 2327, + [2372] = 2271, + [2373] = 2373, + [2374] = 2327, + [2375] = 2204, + [2376] = 2291, + [2377] = 2323, + [2378] = 2378, + [2379] = 2379, + [2380] = 2380, + [2381] = 2381, + [2382] = 2382, + [2383] = 2383, + [2384] = 2384, + [2385] = 2385, + [2386] = 2386, + [2387] = 2387, + [2388] = 2388, + [2389] = 2389, + [2390] = 2390, + [2391] = 2391, + [2392] = 2392, + [2393] = 2393, + [2394] = 2388, + [2395] = 2395, + [2396] = 2396, + [2397] = 2397, + [2398] = 2384, + [2399] = 2399, + [2400] = 2385, + [2401] = 2386, + [2402] = 2402, + [2403] = 2388, + [2404] = 2404, + [2405] = 2405, + [2406] = 2406, + [2407] = 2393, + [2408] = 2408, + [2409] = 2384, + [2410] = 2385, + [2411] = 2386, + [2412] = 2412, + [2413] = 2413, + [2414] = 2414, + [2415] = 2404, + [2416] = 2416, + [2417] = 2417, + [2418] = 2418, + [2419] = 2419, + [2420] = 2420, + [2421] = 2421, + [2422] = 2422, + [2423] = 2423, + [2424] = 2424, + [2425] = 2425, + [2426] = 2426, + [2427] = 2427, + [2428] = 2428, + [2429] = 2429, + [2430] = 2393, + [2431] = 2431, + [2432] = 2432, + [2433] = 2433, + [2434] = 2434, + [2435] = 2435, + [2436] = 2393, + [2437] = 2425, + [2438] = 2438, + [2439] = 2408, + [2440] = 2391, + [2441] = 2389, + [2442] = 2383, + [2443] = 2381, + [2444] = 2438, + [2445] = 2445, + [2446] = 2446, + [2447] = 2447, + [2448] = 2448, + [2449] = 2449, + [2450] = 2450, + [2451] = 2451, + [2452] = 2395, + [2453] = 2390, + [2454] = 2454, + [2455] = 2455, + [2456] = 2456, + [2457] = 2457, + [2458] = 2458, + [2459] = 2459, + [2460] = 2421, + [2461] = 2387, + [2462] = 2422, + [2463] = 2431, + [2464] = 2464, + [2465] = 2465, + [2466] = 2393, + [2467] = 2467, + [2468] = 2468, + [2469] = 2469, + [2470] = 2470, + [2471] = 2471, + [2472] = 2472, + [2473] = 2473, + [2474] = 2388, + [2475] = 2475, + [2476] = 2476, + [2477] = 595, + [2478] = 2478, + [2479] = 2479, + [2480] = 2480, + [2481] = 2384, + [2482] = 2386, + [2483] = 2427, + [2484] = 2385, + [2485] = 2385, + [2486] = 2384, + [2487] = 2487, + [2488] = 2488, + [2489] = 2489, + [2490] = 2429, + [2491] = 2491, + [2492] = 2492, + [2493] = 2428, + [2494] = 2494, + [2495] = 2386, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, + [2499] = 2427, + [2500] = 2500, + [2501] = 2501, + [2502] = 2502, + [2503] = 2393, + [2504] = 2504, + [2505] = 2505, + [2506] = 2498, + [2507] = 2507, + [2508] = 2508, + [2509] = 2509, + [2510] = 2510, + [2511] = 2511, + [2512] = 2508, + [2513] = 2513, + [2514] = 2514, + [2515] = 2515, + [2516] = 2497, + [2517] = 2402, + [2518] = 2432, + [2519] = 2519, + [2520] = 2520, + [2521] = 2521, + [2522] = 2522, + [2523] = 2523, + [2524] = 2524, + [2525] = 2525, + [2526] = 2384, + [2527] = 2527, + [2528] = 2388, + [2529] = 2529, + [2530] = 2530, + [2531] = 2531, + [2532] = 2532, + [2533] = 2533, + [2534] = 2534, + [2535] = 2426, + [2536] = 2536, + [2537] = 2537, + [2538] = 2510, + [2539] = 2500, + [2540] = 2428, + [2541] = 2429, + [2542] = 2496, + [2543] = 2543, + [2544] = 2544, + [2545] = 2545, + [2546] = 2546, + [2547] = 2424, + [2548] = 2548, + [2549] = 2549, + [2550] = 2458, + [2551] = 2455, + [2552] = 2552, + [2553] = 2553, + [2554] = 2448, + [2555] = 2509, + [2556] = 2556, + [2557] = 2428, + [2558] = 2429, + [2559] = 2447, + [2560] = 2385, + [2561] = 2428, + [2562] = 2429, + [2563] = 2420, + [2564] = 2428, + [2565] = 2429, + [2566] = 2566, + [2567] = 2487, + [2568] = 2548, + [2569] = 2525, + [2570] = 2531, + [2571] = 2523, + [2572] = 2514, + [2573] = 2395, + [2574] = 2386, + [2575] = 2524, + [2576] = 2513, + [2577] = 2433, + [2578] = 2412, + [2579] = 2465, + [2580] = 2580, + [2581] = 2472, + [2582] = 2582, + [2583] = 2457, + [2584] = 2584, + [2585] = 2469, + [2586] = 2467, + [2587] = 2379, + [2588] = 2549, + [2589] = 2522, + [2590] = 604, + [2591] = 2556, + [2592] = 2592, + [2593] = 2593, + [2594] = 2405, + [2595] = 2470, + [2596] = 2504, + [2597] = 2566, + [2598] = 2582, + [2599] = 2552, + [2600] = 2507, + [2601] = 2601, + [2602] = 2531, + [2603] = 2523, + [2604] = 2423, + [2605] = 2457, + [2606] = 2592, + [2607] = 2607, + [2608] = 2422, + [2609] = 2419, + [2610] = 2397, + [2611] = 2537, + [2612] = 2418, + [2613] = 2454, + [2614] = 2434, + [2615] = 2615, + [2616] = 2382, + [2617] = 2502, + [2618] = 2380, + [2619] = 2450, + [2620] = 2501, + [2621] = 2456, + [2622] = 2417, + [2623] = 2446, + [2624] = 2533, + [2625] = 2625, + [2626] = 2413, + [2627] = 2601, + [2628] = 2553, + [2629] = 2459, +}; + static inline bool sym_identifier_character_set_1(int32_t c) { return (c < 43514 ? (c < 4193 @@ -13398,12 +16071,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [42] = {.lex_state = 5, .external_lex_state = 2}, [43] = {.lex_state = 5, .external_lex_state = 2}, [44] = {.lex_state = 5, .external_lex_state = 2}, - [45] = {.lex_state = 57, .external_lex_state = 2}, - [46] = {.lex_state = 5, .external_lex_state = 2}, + [45] = {.lex_state = 5, .external_lex_state = 2}, + [46] = {.lex_state = 57, .external_lex_state = 2}, [47] = {.lex_state = 5, .external_lex_state = 2}, [48] = {.lex_state = 5, .external_lex_state = 2}, - [49] = {.lex_state = 5, .external_lex_state = 2}, - [50] = {.lex_state = 57, .external_lex_state = 2}, + [49] = {.lex_state = 57, .external_lex_state = 2}, + [50] = {.lex_state = 5, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, [52] = {.lex_state = 5, .external_lex_state = 2}, [53] = {.lex_state = 5, .external_lex_state = 2}, @@ -13415,41 +16088,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [59] = {.lex_state = 5, .external_lex_state = 2}, [60] = {.lex_state = 5, .external_lex_state = 2}, [61] = {.lex_state = 5, .external_lex_state = 2}, - [62] = {.lex_state = 5, .external_lex_state = 2}, + [62] = {.lex_state = 57, .external_lex_state = 2}, [63] = {.lex_state = 5, .external_lex_state = 2}, [64] = {.lex_state = 5, .external_lex_state = 2}, - [65] = {.lex_state = 57, .external_lex_state = 2}, - [66] = {.lex_state = 5, .external_lex_state = 2}, - [67] = {.lex_state = 57, .external_lex_state = 2}, + [65] = {.lex_state = 5, .external_lex_state = 2}, + [66] = {.lex_state = 57, .external_lex_state = 2}, + [67] = {.lex_state = 5, .external_lex_state = 2}, [68] = {.lex_state = 5, .external_lex_state = 2}, - [69] = {.lex_state = 5, .external_lex_state = 2}, + [69] = {.lex_state = 57, .external_lex_state = 2}, [70] = {.lex_state = 5, .external_lex_state = 2}, - [71] = {.lex_state = 57, .external_lex_state = 2}, + [71] = {.lex_state = 5, .external_lex_state = 2}, [72] = {.lex_state = 57, .external_lex_state = 2}, [73] = {.lex_state = 5, .external_lex_state = 2}, - [74] = {.lex_state = 57, .external_lex_state = 2}, - [75] = {.lex_state = 5, .external_lex_state = 2}, - [76] = {.lex_state = 57, .external_lex_state = 2}, + [74] = {.lex_state = 5, .external_lex_state = 2}, + [75] = {.lex_state = 57, .external_lex_state = 2}, + [76] = {.lex_state = 5, .external_lex_state = 2}, [77] = {.lex_state = 5, .external_lex_state = 2}, [78] = {.lex_state = 5, .external_lex_state = 2}, - [79] = {.lex_state = 57, .external_lex_state = 2}, + [79] = {.lex_state = 5, .external_lex_state = 2}, [80] = {.lex_state = 5, .external_lex_state = 2}, [81] = {.lex_state = 5, .external_lex_state = 2}, [82] = {.lex_state = 5, .external_lex_state = 2}, [83] = {.lex_state = 5, .external_lex_state = 2}, [84] = {.lex_state = 5, .external_lex_state = 2}, [85] = {.lex_state = 5, .external_lex_state = 2}, - [86] = {.lex_state = 57, .external_lex_state = 2}, + [86] = {.lex_state = 5, .external_lex_state = 2}, [87] = {.lex_state = 5, .external_lex_state = 2}, [88] = {.lex_state = 5, .external_lex_state = 2}, [89] = {.lex_state = 5, .external_lex_state = 2}, [90] = {.lex_state = 5, .external_lex_state = 2}, - [91] = {.lex_state = 57, .external_lex_state = 2}, + [91] = {.lex_state = 5, .external_lex_state = 2}, [92] = {.lex_state = 5, .external_lex_state = 2}, - [93] = {.lex_state = 5, .external_lex_state = 2}, + [93] = {.lex_state = 57, .external_lex_state = 2}, [94] = {.lex_state = 5, .external_lex_state = 2}, [95] = {.lex_state = 5, .external_lex_state = 2}, - [96] = {.lex_state = 5, .external_lex_state = 2}, + [96] = {.lex_state = 57, .external_lex_state = 2}, [97] = {.lex_state = 5, .external_lex_state = 2}, [98] = {.lex_state = 5, .external_lex_state = 2}, [99] = {.lex_state = 5, .external_lex_state = 2}, @@ -13459,19 +16132,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [103] = {.lex_state = 5, .external_lex_state = 2}, [104] = {.lex_state = 5, .external_lex_state = 2}, [105] = {.lex_state = 5, .external_lex_state = 2}, - [106] = {.lex_state = 5, .external_lex_state = 2}, + [106] = {.lex_state = 57, .external_lex_state = 2}, [107] = {.lex_state = 5, .external_lex_state = 2}, [108] = {.lex_state = 5, .external_lex_state = 2}, [109] = {.lex_state = 5, .external_lex_state = 2}, - [110] = {.lex_state = 57, .external_lex_state = 2}, + [110] = {.lex_state = 5, .external_lex_state = 2}, [111] = {.lex_state = 5, .external_lex_state = 2}, [112] = {.lex_state = 5, .external_lex_state = 2}, [113] = {.lex_state = 5, .external_lex_state = 2}, - [114] = {.lex_state = 5, .external_lex_state = 2}, + [114] = {.lex_state = 57, .external_lex_state = 2}, [115] = {.lex_state = 5, .external_lex_state = 2}, - [116] = {.lex_state = 5, .external_lex_state = 2}, + [116] = {.lex_state = 57, .external_lex_state = 2}, [117] = {.lex_state = 5, .external_lex_state = 2}, - [118] = {.lex_state = 5, .external_lex_state = 2}, + [118] = {.lex_state = 57, .external_lex_state = 2}, [119] = {.lex_state = 57, .external_lex_state = 2}, [120] = {.lex_state = 5, .external_lex_state = 2}, [121] = {.lex_state = 57, .external_lex_state = 2}, @@ -13481,66 +16154,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [125] = {.lex_state = 5, .external_lex_state = 2}, [126] = {.lex_state = 5, .external_lex_state = 2}, [127] = {.lex_state = 5, .external_lex_state = 2}, - [128] = {.lex_state = 57, .external_lex_state = 2}, + [128] = {.lex_state = 5, .external_lex_state = 2}, [129] = {.lex_state = 5, .external_lex_state = 2}, [130] = {.lex_state = 5, .external_lex_state = 2}, [131] = {.lex_state = 57, .external_lex_state = 2}, [132] = {.lex_state = 5, .external_lex_state = 2}, [133] = {.lex_state = 5, .external_lex_state = 2}, [134] = {.lex_state = 5, .external_lex_state = 2}, - [135] = {.lex_state = 5, .external_lex_state = 2}, + [135] = {.lex_state = 57, .external_lex_state = 2}, [136] = {.lex_state = 5, .external_lex_state = 2}, - [137] = {.lex_state = 5, .external_lex_state = 2}, + [137] = {.lex_state = 57, .external_lex_state = 2}, [138] = {.lex_state = 5, .external_lex_state = 2}, - [139] = {.lex_state = 5, .external_lex_state = 2}, + [139] = {.lex_state = 57, .external_lex_state = 2}, [140] = {.lex_state = 5, .external_lex_state = 2}, [141] = {.lex_state = 5, .external_lex_state = 2}, [142] = {.lex_state = 57, .external_lex_state = 2}, - [143] = {.lex_state = 57, .external_lex_state = 2}, - [144] = {.lex_state = 57, .external_lex_state = 2}, - [145] = {.lex_state = 57, .external_lex_state = 2}, + [143] = {.lex_state = 5, .external_lex_state = 2}, + [144] = {.lex_state = 5, .external_lex_state = 2}, + [145] = {.lex_state = 5, .external_lex_state = 2}, [146] = {.lex_state = 5, .external_lex_state = 2}, [147] = {.lex_state = 5, .external_lex_state = 2}, [148] = {.lex_state = 5, .external_lex_state = 2}, - [149] = {.lex_state = 5, .external_lex_state = 2}, - [150] = {.lex_state = 5, .external_lex_state = 2}, + [149] = {.lex_state = 57, .external_lex_state = 2}, + [150] = {.lex_state = 57, .external_lex_state = 2}, [151] = {.lex_state = 5, .external_lex_state = 2}, [152] = {.lex_state = 5, .external_lex_state = 2}, [153] = {.lex_state = 5, .external_lex_state = 2}, - [154] = {.lex_state = 57, .external_lex_state = 2}, - [155] = {.lex_state = 5, .external_lex_state = 2}, + [154] = {.lex_state = 5, .external_lex_state = 2}, + [155] = {.lex_state = 57, .external_lex_state = 2}, [156] = {.lex_state = 5, .external_lex_state = 2}, [157] = {.lex_state = 5, .external_lex_state = 2}, [158] = {.lex_state = 5, .external_lex_state = 2}, - [159] = {.lex_state = 57, .external_lex_state = 2}, + [159] = {.lex_state = 5, .external_lex_state = 2}, [160] = {.lex_state = 5, .external_lex_state = 2}, [161] = {.lex_state = 57, .external_lex_state = 2}, [162] = {.lex_state = 5, .external_lex_state = 2}, [163] = {.lex_state = 57, .external_lex_state = 2}, - [164] = {.lex_state = 5, .external_lex_state = 2}, + [164] = {.lex_state = 57, .external_lex_state = 2}, [165] = {.lex_state = 5, .external_lex_state = 2}, - [166] = {.lex_state = 57, .external_lex_state = 2}, - [167] = {.lex_state = 57, .external_lex_state = 2}, + [166] = {.lex_state = 5, .external_lex_state = 2}, + [167] = {.lex_state = 5, .external_lex_state = 2}, [168] = {.lex_state = 5, .external_lex_state = 2}, [169] = {.lex_state = 5, .external_lex_state = 2}, [170] = {.lex_state = 5, .external_lex_state = 2}, [171] = {.lex_state = 5, .external_lex_state = 2}, [172] = {.lex_state = 5, .external_lex_state = 2}, - [173] = {.lex_state = 57, .external_lex_state = 2}, + [173] = {.lex_state = 5, .external_lex_state = 2}, [174] = {.lex_state = 5, .external_lex_state = 2}, [175] = {.lex_state = 5, .external_lex_state = 2}, - [176] = {.lex_state = 57, .external_lex_state = 2}, + [176] = {.lex_state = 5, .external_lex_state = 2}, [177] = {.lex_state = 5, .external_lex_state = 2}, - [178] = {.lex_state = 5, .external_lex_state = 2}, + [178] = {.lex_state = 57, .external_lex_state = 2}, [179] = {.lex_state = 5, .external_lex_state = 2}, - [180] = {.lex_state = 5, .external_lex_state = 2}, + [180] = {.lex_state = 57, .external_lex_state = 2}, [181] = {.lex_state = 5, .external_lex_state = 2}, [182] = {.lex_state = 5, .external_lex_state = 2}, - [183] = {.lex_state = 57, .external_lex_state = 2}, + [183] = {.lex_state = 5, .external_lex_state = 2}, [184] = {.lex_state = 5, .external_lex_state = 2}, [185] = {.lex_state = 5, .external_lex_state = 2}, [186] = {.lex_state = 57, .external_lex_state = 2}, - [187] = {.lex_state = 5, .external_lex_state = 2}, + [187] = {.lex_state = 57, .external_lex_state = 2}, [188] = {.lex_state = 57, .external_lex_state = 2}, [189] = {.lex_state = 6, .external_lex_state = 2}, [190] = {.lex_state = 6, .external_lex_state = 2}, @@ -13558,10 +16231,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [202] = {.lex_state = 6, .external_lex_state = 2}, [203] = {.lex_state = 6, .external_lex_state = 2}, [204] = {.lex_state = 5, .external_lex_state = 2}, - [205] = {.lex_state = 5, .external_lex_state = 2}, + [205] = {.lex_state = 1, .external_lex_state = 2}, [206] = {.lex_state = 5, .external_lex_state = 2}, [207] = {.lex_state = 5, .external_lex_state = 2}, - [208] = {.lex_state = 1, .external_lex_state = 2}, + [208] = {.lex_state = 5, .external_lex_state = 2}, [209] = {.lex_state = 5, .external_lex_state = 2}, [210] = {.lex_state = 5, .external_lex_state = 2}, [211] = {.lex_state = 5, .external_lex_state = 2}, @@ -13573,10 +16246,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [217] = {.lex_state = 5, .external_lex_state = 2}, [218] = {.lex_state = 5, .external_lex_state = 2}, [219] = {.lex_state = 5, .external_lex_state = 2}, - [220] = {.lex_state = 1, .external_lex_state = 2}, + [220] = {.lex_state = 4, .external_lex_state = 3}, [221] = {.lex_state = 4, .external_lex_state = 3}, [222] = {.lex_state = 4, .external_lex_state = 3}, - [223] = {.lex_state = 4, .external_lex_state = 3}, + [223] = {.lex_state = 1, .external_lex_state = 2}, [224] = {.lex_state = 4, .external_lex_state = 3}, [225] = {.lex_state = 4, .external_lex_state = 3}, [226] = {.lex_state = 1, .external_lex_state = 2}, @@ -13587,21 +16260,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [231] = {.lex_state = 1, .external_lex_state = 2}, [232] = {.lex_state = 1, .external_lex_state = 2}, [233] = {.lex_state = 1, .external_lex_state = 2}, - [234] = {.lex_state = 5, .external_lex_state = 2}, + [234] = {.lex_state = 1, .external_lex_state = 2}, [235] = {.lex_state = 1, .external_lex_state = 2}, [236] = {.lex_state = 1, .external_lex_state = 2}, - [237] = {.lex_state = 5, .external_lex_state = 2}, + [237] = {.lex_state = 1, .external_lex_state = 2}, [238] = {.lex_state = 1, .external_lex_state = 2}, - [239] = {.lex_state = 5, .external_lex_state = 2}, + [239] = {.lex_state = 1, .external_lex_state = 2}, [240] = {.lex_state = 1, .external_lex_state = 2}, [241] = {.lex_state = 1, .external_lex_state = 2}, - [242] = {.lex_state = 1, .external_lex_state = 2}, + [242] = {.lex_state = 5, .external_lex_state = 2}, [243] = {.lex_state = 1, .external_lex_state = 2}, [244] = {.lex_state = 1, .external_lex_state = 2}, [245] = {.lex_state = 1, .external_lex_state = 2}, [246] = {.lex_state = 1, .external_lex_state = 2}, [247] = {.lex_state = 1, .external_lex_state = 2}, - [248] = {.lex_state = 1, .external_lex_state = 2}, + [248] = {.lex_state = 5, .external_lex_state = 2}, [249] = {.lex_state = 1, .external_lex_state = 2}, [250] = {.lex_state = 5, .external_lex_state = 2}, [251] = {.lex_state = 1, .external_lex_state = 2}, @@ -13609,7 +16282,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [253] = {.lex_state = 1, .external_lex_state = 2}, [254] = {.lex_state = 1, .external_lex_state = 2}, [255] = {.lex_state = 1, .external_lex_state = 2}, - [256] = {.lex_state = 1, .external_lex_state = 2}, + [256] = {.lex_state = 5, .external_lex_state = 2}, [257] = {.lex_state = 5, .external_lex_state = 2}, [258] = {.lex_state = 5, .external_lex_state = 2}, [259] = {.lex_state = 5, .external_lex_state = 2}, @@ -13653,7 +16326,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [297] = {.lex_state = 58, .external_lex_state = 2}, [298] = {.lex_state = 58, .external_lex_state = 2}, [299] = {.lex_state = 58, .external_lex_state = 2}, - [300] = {.lex_state = 5, .external_lex_state = 2}, + [300] = {.lex_state = 58, .external_lex_state = 2}, [301] = {.lex_state = 58, .external_lex_state = 2}, [302] = {.lex_state = 58, .external_lex_state = 2}, [303] = {.lex_state = 58, .external_lex_state = 2}, @@ -13676,7 +16349,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [320] = {.lex_state = 58, .external_lex_state = 2}, [321] = {.lex_state = 58, .external_lex_state = 2}, [322] = {.lex_state = 58, .external_lex_state = 2}, - [323] = {.lex_state = 58, .external_lex_state = 2}, + [323] = {.lex_state = 5, .external_lex_state = 2}, [324] = {.lex_state = 58, .external_lex_state = 2}, [325] = {.lex_state = 58, .external_lex_state = 2}, [326] = {.lex_state = 58, .external_lex_state = 2}, @@ -13699,7 +16372,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [343] = {.lex_state = 58, .external_lex_state = 2}, [344] = {.lex_state = 58, .external_lex_state = 2}, [345] = {.lex_state = 58, .external_lex_state = 2}, - [346] = {.lex_state = 5, .external_lex_state = 2}, + [346] = {.lex_state = 58, .external_lex_state = 2}, [347] = {.lex_state = 58, .external_lex_state = 2}, [348] = {.lex_state = 58, .external_lex_state = 2}, [349] = {.lex_state = 58, .external_lex_state = 2}, @@ -13709,13 +16382,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [353] = {.lex_state = 58, .external_lex_state = 2}, [354] = {.lex_state = 58, .external_lex_state = 2}, [355] = {.lex_state = 58, .external_lex_state = 2}, - [356] = {.lex_state = 58, .external_lex_state = 2}, + [356] = {.lex_state = 5, .external_lex_state = 2}, [357] = {.lex_state = 58, .external_lex_state = 2}, [358] = {.lex_state = 58, .external_lex_state = 2}, [359] = {.lex_state = 58, .external_lex_state = 2}, [360] = {.lex_state = 58, .external_lex_state = 2}, - [361] = {.lex_state = 5, .external_lex_state = 2}, - [362] = {.lex_state = 58, .external_lex_state = 2}, + [361] = {.lex_state = 58, .external_lex_state = 2}, + [362] = {.lex_state = 5, .external_lex_state = 2}, [363] = {.lex_state = 58, .external_lex_state = 2}, [364] = {.lex_state = 58, .external_lex_state = 2}, [365] = {.lex_state = 58, .external_lex_state = 2}, @@ -13847,50 +16520,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [491] = {.lex_state = 58, .external_lex_state = 2}, [492] = {.lex_state = 58, .external_lex_state = 2}, [493] = {.lex_state = 58, .external_lex_state = 2}, - [494] = {.lex_state = 5, .external_lex_state = 2}, - [495] = {.lex_state = 12, .external_lex_state = 2}, - [496] = {.lex_state = 5, .external_lex_state = 2}, - [497] = {.lex_state = 11, .external_lex_state = 2}, - [498] = {.lex_state = 11, .external_lex_state = 2}, - [499] = {.lex_state = 11, .external_lex_state = 2}, - [500] = {.lex_state = 11, .external_lex_state = 2}, - [501] = {.lex_state = 5, .external_lex_state = 2}, - [502] = {.lex_state = 11, .external_lex_state = 2}, + [494] = {.lex_state = 58, .external_lex_state = 2}, + [495] = {.lex_state = 58, .external_lex_state = 2}, + [496] = {.lex_state = 58, .external_lex_state = 2}, + [497] = {.lex_state = 58, .external_lex_state = 2}, + [498] = {.lex_state = 58, .external_lex_state = 2}, + [499] = {.lex_state = 58, .external_lex_state = 2}, + [500] = {.lex_state = 58, .external_lex_state = 2}, + [501] = {.lex_state = 58, .external_lex_state = 2}, + [502] = {.lex_state = 12, .external_lex_state = 2}, [503] = {.lex_state = 11, .external_lex_state = 2}, [504] = {.lex_state = 11, .external_lex_state = 2}, [505] = {.lex_state = 11, .external_lex_state = 2}, - [506] = {.lex_state = 11, .external_lex_state = 2}, - [507] = {.lex_state = 11, .external_lex_state = 2}, - [508] = {.lex_state = 11, .external_lex_state = 2}, + [506] = {.lex_state = 5, .external_lex_state = 2}, + [507] = {.lex_state = 5, .external_lex_state = 2}, + [508] = {.lex_state = 5, .external_lex_state = 2}, [509] = {.lex_state = 11, .external_lex_state = 2}, [510] = {.lex_state = 11, .external_lex_state = 2}, [511] = {.lex_state = 11, .external_lex_state = 2}, [512] = {.lex_state = 11, .external_lex_state = 2}, - [513] = {.lex_state = 5, .external_lex_state = 2}, - [514] = {.lex_state = 12, .external_lex_state = 2}, + [513] = {.lex_state = 11, .external_lex_state = 2}, + [514] = {.lex_state = 11, .external_lex_state = 2}, [515] = {.lex_state = 11, .external_lex_state = 2}, [516] = {.lex_state = 11, .external_lex_state = 2}, - [517] = {.lex_state = 12, .external_lex_state = 2}, - [518] = {.lex_state = 12, .external_lex_state = 2}, - [519] = {.lex_state = 12, .external_lex_state = 2}, - [520] = {.lex_state = 12, .external_lex_state = 2}, - [521] = {.lex_state = 11, .external_lex_state = 2}, - [522] = {.lex_state = 11, .external_lex_state = 2}, + [517] = {.lex_state = 11, .external_lex_state = 2}, + [518] = {.lex_state = 11, .external_lex_state = 2}, + [519] = {.lex_state = 11, .external_lex_state = 2}, + [520] = {.lex_state = 11, .external_lex_state = 2}, + [521] = {.lex_state = 5, .external_lex_state = 2}, + [522] = {.lex_state = 12, .external_lex_state = 2}, [523] = {.lex_state = 12, .external_lex_state = 2}, [524] = {.lex_state = 11, .external_lex_state = 2}, [525] = {.lex_state = 11, .external_lex_state = 2}, - [526] = {.lex_state = 12, .external_lex_state = 2}, + [526] = {.lex_state = 11, .external_lex_state = 2}, [527] = {.lex_state = 11, .external_lex_state = 2}, - [528] = {.lex_state = 12, .external_lex_state = 2}, + [528] = {.lex_state = 11, .external_lex_state = 2}, [529] = {.lex_state = 12, .external_lex_state = 2}, [530] = {.lex_state = 12, .external_lex_state = 2}, [531] = {.lex_state = 12, .external_lex_state = 2}, - [532] = {.lex_state = 11, .external_lex_state = 2}, - [533] = {.lex_state = 11, .external_lex_state = 2}, + [532] = {.lex_state = 12, .external_lex_state = 2}, + [533] = {.lex_state = 12, .external_lex_state = 2}, [534] = {.lex_state = 12, .external_lex_state = 2}, [535] = {.lex_state = 12, .external_lex_state = 2}, [536] = {.lex_state = 12, .external_lex_state = 2}, - [537] = {.lex_state = 12, .external_lex_state = 2}, + [537] = {.lex_state = 11, .external_lex_state = 2}, [538] = {.lex_state = 11, .external_lex_state = 2}, [539] = {.lex_state = 12, .external_lex_state = 2}, [540] = {.lex_state = 12, .external_lex_state = 2}, @@ -13898,90 +16571,90 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [542] = {.lex_state = 12, .external_lex_state = 2}, [543] = {.lex_state = 12, .external_lex_state = 2}, [544] = {.lex_state = 12, .external_lex_state = 2}, - [545] = {.lex_state = 11, .external_lex_state = 2}, + [545] = {.lex_state = 12, .external_lex_state = 2}, [546] = {.lex_state = 12, .external_lex_state = 2}, [547] = {.lex_state = 12, .external_lex_state = 2}, [548] = {.lex_state = 12, .external_lex_state = 2}, - [549] = {.lex_state = 12, .external_lex_state = 2}, - [550] = {.lex_state = 11, .external_lex_state = 2}, + [549] = {.lex_state = 11, .external_lex_state = 2}, + [550] = {.lex_state = 12, .external_lex_state = 2}, [551] = {.lex_state = 12, .external_lex_state = 2}, [552] = {.lex_state = 12, .external_lex_state = 2}, - [553] = {.lex_state = 11, .external_lex_state = 2}, + [553] = {.lex_state = 12, .external_lex_state = 2}, [554] = {.lex_state = 12, .external_lex_state = 2}, - [555] = {.lex_state = 12, .external_lex_state = 2}, - [556] = {.lex_state = 11, .external_lex_state = 2}, + [555] = {.lex_state = 11, .external_lex_state = 2}, + [556] = {.lex_state = 12, .external_lex_state = 2}, [557] = {.lex_state = 12, .external_lex_state = 2}, - [558] = {.lex_state = 5, .external_lex_state = 2}, - [559] = {.lex_state = 4, .external_lex_state = 3}, - [560] = {.lex_state = 5, .external_lex_state = 2}, - [561] = {.lex_state = 4, .external_lex_state = 3}, - [562] = {.lex_state = 4, .external_lex_state = 3}, - [563] = {.lex_state = 4, .external_lex_state = 3}, - [564] = {.lex_state = 4, .external_lex_state = 3}, - [565] = {.lex_state = 4, .external_lex_state = 3}, - [566] = {.lex_state = 4, .external_lex_state = 3}, + [558] = {.lex_state = 11, .external_lex_state = 2}, + [559] = {.lex_state = 11, .external_lex_state = 2}, + [560] = {.lex_state = 12, .external_lex_state = 2}, + [561] = {.lex_state = 11, .external_lex_state = 2}, + [562] = {.lex_state = 12, .external_lex_state = 2}, + [563] = {.lex_state = 11, .external_lex_state = 2}, + [564] = {.lex_state = 11, .external_lex_state = 2}, + [565] = {.lex_state = 12, .external_lex_state = 2}, + [566] = {.lex_state = 5, .external_lex_state = 2}, [567] = {.lex_state = 5, .external_lex_state = 2}, - [568] = {.lex_state = 5, .external_lex_state = 2}, + [568] = {.lex_state = 4, .external_lex_state = 3}, [569] = {.lex_state = 4, .external_lex_state = 3}, - [570] = {.lex_state = 10, .external_lex_state = 2}, + [570] = {.lex_state = 4, .external_lex_state = 3}, [571] = {.lex_state = 4, .external_lex_state = 3}, - [572] = {.lex_state = 5, .external_lex_state = 2}, + [572] = {.lex_state = 4, .external_lex_state = 3}, [573] = {.lex_state = 4, .external_lex_state = 3}, - [574] = {.lex_state = 5, .external_lex_state = 2}, + [574] = {.lex_state = 4, .external_lex_state = 3}, [575] = {.lex_state = 5, .external_lex_state = 2}, - [576] = {.lex_state = 11, .external_lex_state = 2}, - [577] = {.lex_state = 11, .external_lex_state = 2}, - [578] = {.lex_state = 5, .external_lex_state = 2}, + [576] = {.lex_state = 4, .external_lex_state = 3}, + [577] = {.lex_state = 5, .external_lex_state = 2}, + [578] = {.lex_state = 4, .external_lex_state = 3}, [579] = {.lex_state = 5, .external_lex_state = 2}, - [580] = {.lex_state = 11, .external_lex_state = 2}, - [581] = {.lex_state = 11, .external_lex_state = 2}, - [582] = {.lex_state = 11, .external_lex_state = 2}, + [580] = {.lex_state = 10, .external_lex_state = 2}, + [581] = {.lex_state = 4, .external_lex_state = 3}, + [582] = {.lex_state = 5, .external_lex_state = 2}, [583] = {.lex_state = 5, .external_lex_state = 2}, - [584] = {.lex_state = 5, .external_lex_state = 2}, + [584] = {.lex_state = 11, .external_lex_state = 2}, [585] = {.lex_state = 11, .external_lex_state = 2}, - [586] = {.lex_state = 5, .external_lex_state = 2}, + [586] = {.lex_state = 11, .external_lex_state = 2}, [587] = {.lex_state = 5, .external_lex_state = 2}, - [588] = {.lex_state = 11, .external_lex_state = 2}, + [588] = {.lex_state = 5, .external_lex_state = 2}, [589] = {.lex_state = 11, .external_lex_state = 2}, - [590] = {.lex_state = 4, .external_lex_state = 3}, + [590] = {.lex_state = 11, .external_lex_state = 2}, [591] = {.lex_state = 11, .external_lex_state = 2}, - [592] = {.lex_state = 11, .external_lex_state = 2}, - [593] = {.lex_state = 11, .external_lex_state = 2}, + [592] = {.lex_state = 5, .external_lex_state = 2}, + [593] = {.lex_state = 5, .external_lex_state = 2}, [594] = {.lex_state = 11, .external_lex_state = 2}, [595] = {.lex_state = 11, .external_lex_state = 2}, [596] = {.lex_state = 11, .external_lex_state = 2}, [597] = {.lex_state = 11, .external_lex_state = 2}, - [598] = {.lex_state = 11, .external_lex_state = 2}, + [598] = {.lex_state = 4, .external_lex_state = 3}, [599] = {.lex_state = 5, .external_lex_state = 2}, - [600] = {.lex_state = 5, .external_lex_state = 2}, - [601] = {.lex_state = 5, .external_lex_state = 2}, - [602] = {.lex_state = 4, .external_lex_state = 3}, - [603] = {.lex_state = 5, .external_lex_state = 2}, - [604] = {.lex_state = 4, .external_lex_state = 3}, - [605] = {.lex_state = 5, .external_lex_state = 2}, - [606] = {.lex_state = 12, .external_lex_state = 2}, - [607] = {.lex_state = 5, .external_lex_state = 2}, + [600] = {.lex_state = 11, .external_lex_state = 2}, + [601] = {.lex_state = 11, .external_lex_state = 2}, + [602] = {.lex_state = 11, .external_lex_state = 2}, + [603] = {.lex_state = 11, .external_lex_state = 2}, + [604] = {.lex_state = 11, .external_lex_state = 2}, + [605] = {.lex_state = 11, .external_lex_state = 2}, + [606] = {.lex_state = 5, .external_lex_state = 2}, + [607] = {.lex_state = 12, .external_lex_state = 2}, [608] = {.lex_state = 5, .external_lex_state = 2}, - [609] = {.lex_state = 5, .external_lex_state = 2}, + [609] = {.lex_state = 4, .external_lex_state = 3}, [610] = {.lex_state = 5, .external_lex_state = 2}, [611] = {.lex_state = 5, .external_lex_state = 2}, [612] = {.lex_state = 5, .external_lex_state = 2}, [613] = {.lex_state = 5, .external_lex_state = 2}, [614] = {.lex_state = 5, .external_lex_state = 2}, - [615] = {.lex_state = 12, .external_lex_state = 2}, - [616] = {.lex_state = 5, .external_lex_state = 2}, - [617] = {.lex_state = 12, .external_lex_state = 2}, - [618] = {.lex_state = 12, .external_lex_state = 2}, - [619] = {.lex_state = 5, .external_lex_state = 2}, - [620] = {.lex_state = 5, .external_lex_state = 2}, + [615] = {.lex_state = 5, .external_lex_state = 2}, + [616] = {.lex_state = 4, .external_lex_state = 3}, + [617] = {.lex_state = 5, .external_lex_state = 2}, + [618] = {.lex_state = 4, .external_lex_state = 3}, + [619] = {.lex_state = 12, .external_lex_state = 2}, + [620] = {.lex_state = 12, .external_lex_state = 2}, [621] = {.lex_state = 5, .external_lex_state = 2}, - [622] = {.lex_state = 4, .external_lex_state = 3}, - [623] = {.lex_state = 4, .external_lex_state = 3}, - [624] = {.lex_state = 12, .external_lex_state = 2}, - [625] = {.lex_state = 5, .external_lex_state = 2}, + [622] = {.lex_state = 5, .external_lex_state = 2}, + [623] = {.lex_state = 5, .external_lex_state = 2}, + [624] = {.lex_state = 5, .external_lex_state = 2}, + [625] = {.lex_state = 4, .external_lex_state = 3}, [626] = {.lex_state = 5, .external_lex_state = 2}, [627] = {.lex_state = 5, .external_lex_state = 2}, - [628] = {.lex_state = 5, .external_lex_state = 2}, + [628] = {.lex_state = 12, .external_lex_state = 2}, [629] = {.lex_state = 5, .external_lex_state = 2}, [630] = {.lex_state = 5, .external_lex_state = 2}, [631] = {.lex_state = 5, .external_lex_state = 2}, @@ -13994,15 +16667,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [638] = {.lex_state = 5, .external_lex_state = 2}, [639] = {.lex_state = 5, .external_lex_state = 2}, [640] = {.lex_state = 5, .external_lex_state = 2}, - [641] = {.lex_state = 4, .external_lex_state = 3}, - [642] = {.lex_state = 4, .external_lex_state = 3}, - [643] = {.lex_state = 4, .external_lex_state = 3}, - [644] = {.lex_state = 4, .external_lex_state = 3}, - [645] = {.lex_state = 4, .external_lex_state = 3}, - [646] = {.lex_state = 4, .external_lex_state = 3}, - [647] = {.lex_state = 4, .external_lex_state = 3}, + [641] = {.lex_state = 5, .external_lex_state = 2}, + [642] = {.lex_state = 5, .external_lex_state = 2}, + [643] = {.lex_state = 5, .external_lex_state = 2}, + [644] = {.lex_state = 5, .external_lex_state = 2}, + [645] = {.lex_state = 12, .external_lex_state = 2}, + [646] = {.lex_state = 5, .external_lex_state = 2}, + [647] = {.lex_state = 5, .external_lex_state = 2}, [648] = {.lex_state = 4, .external_lex_state = 3}, - [649] = {.lex_state = 4, .external_lex_state = 3}, + [649] = {.lex_state = 5, .external_lex_state = 2}, [650] = {.lex_state = 4, .external_lex_state = 3}, [651] = {.lex_state = 4, .external_lex_state = 3}, [652] = {.lex_state = 4, .external_lex_state = 3}, @@ -14091,7 +16764,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [735] = {.lex_state = 4, .external_lex_state = 3}, [736] = {.lex_state = 4, .external_lex_state = 3}, [737] = {.lex_state = 4, .external_lex_state = 3}, - [738] = {.lex_state = 5, .external_lex_state = 2}, + [738] = {.lex_state = 4, .external_lex_state = 3}, [739] = {.lex_state = 4, .external_lex_state = 3}, [740] = {.lex_state = 4, .external_lex_state = 3}, [741] = {.lex_state = 4, .external_lex_state = 3}, @@ -14106,7 +16779,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [750] = {.lex_state = 4, .external_lex_state = 3}, [751] = {.lex_state = 4, .external_lex_state = 3}, [752] = {.lex_state = 4, .external_lex_state = 3}, - [753] = {.lex_state = 4, .external_lex_state = 3}, + [753] = {.lex_state = 5, .external_lex_state = 2}, [754] = {.lex_state = 4, .external_lex_state = 3}, [755] = {.lex_state = 4, .external_lex_state = 3}, [756] = {.lex_state = 4, .external_lex_state = 3}, @@ -14122,32 +16795,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [766] = {.lex_state = 4, .external_lex_state = 3}, [767] = {.lex_state = 4, .external_lex_state = 3}, [768] = {.lex_state = 4, .external_lex_state = 3}, - [769] = {.lex_state = 5, .external_lex_state = 2}, - [770] = {.lex_state = 5, .external_lex_state = 2}, - [771] = {.lex_state = 5, .external_lex_state = 2}, - [772] = {.lex_state = 5, .external_lex_state = 2}, - [773] = {.lex_state = 6, .external_lex_state = 2}, - [774] = {.lex_state = 3, .external_lex_state = 3}, - [775] = {.lex_state = 3, .external_lex_state = 3}, - [776] = {.lex_state = 3, .external_lex_state = 3}, - [777] = {.lex_state = 3, .external_lex_state = 3}, - [778] = {.lex_state = 3, .external_lex_state = 3}, - [779] = {.lex_state = 3, .external_lex_state = 3}, - [780] = {.lex_state = 3, .external_lex_state = 3}, - [781] = {.lex_state = 14, .external_lex_state = 3}, - [782] = {.lex_state = 14, .external_lex_state = 3}, - [783] = {.lex_state = 2, .external_lex_state = 3}, + [769] = {.lex_state = 4, .external_lex_state = 3}, + [770] = {.lex_state = 4, .external_lex_state = 3}, + [771] = {.lex_state = 4, .external_lex_state = 3}, + [772] = {.lex_state = 4, .external_lex_state = 3}, + [773] = {.lex_state = 4, .external_lex_state = 3}, + [774] = {.lex_state = 4, .external_lex_state = 3}, + [775] = {.lex_state = 4, .external_lex_state = 3}, + [776] = {.lex_state = 4, .external_lex_state = 3}, + [777] = {.lex_state = 5, .external_lex_state = 2}, + [778] = {.lex_state = 5, .external_lex_state = 2}, + [779] = {.lex_state = 5, .external_lex_state = 2}, + [780] = {.lex_state = 5, .external_lex_state = 2}, + [781] = {.lex_state = 6, .external_lex_state = 2}, + [782] = {.lex_state = 3, .external_lex_state = 3}, + [783] = {.lex_state = 3, .external_lex_state = 3}, [784] = {.lex_state = 3, .external_lex_state = 3}, [785] = {.lex_state = 3, .external_lex_state = 3}, - [786] = {.lex_state = 14, .external_lex_state = 3}, + [786] = {.lex_state = 3, .external_lex_state = 3}, [787] = {.lex_state = 3, .external_lex_state = 3}, - [788] = {.lex_state = 14, .external_lex_state = 3}, - [789] = {.lex_state = 2, .external_lex_state = 3}, - [790] = {.lex_state = 14, .external_lex_state = 3}, - [791] = {.lex_state = 2, .external_lex_state = 3}, - [792] = {.lex_state = 2, .external_lex_state = 3}, + [788] = {.lex_state = 2, .external_lex_state = 3}, + [789] = {.lex_state = 3, .external_lex_state = 3}, + [790] = {.lex_state = 3, .external_lex_state = 3}, + [791] = {.lex_state = 3, .external_lex_state = 3}, + [792] = {.lex_state = 3, .external_lex_state = 3}, [793] = {.lex_state = 2, .external_lex_state = 3}, - [794] = {.lex_state = 2, .external_lex_state = 3}, + [794] = {.lex_state = 14, .external_lex_state = 3}, [795] = {.lex_state = 2, .external_lex_state = 3}, [796] = {.lex_state = 2, .external_lex_state = 3}, [797] = {.lex_state = 2, .external_lex_state = 3}, @@ -14155,78 +16828,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [799] = {.lex_state = 14, .external_lex_state = 3}, [800] = {.lex_state = 14, .external_lex_state = 3}, [801] = {.lex_state = 2, .external_lex_state = 3}, - [802] = {.lex_state = 2, .external_lex_state = 3}, + [802] = {.lex_state = 14, .external_lex_state = 3}, [803] = {.lex_state = 2, .external_lex_state = 3}, [804] = {.lex_state = 14, .external_lex_state = 3}, - [805] = {.lex_state = 14, .external_lex_state = 3}, - [806] = {.lex_state = 9, .external_lex_state = 3}, + [805] = {.lex_state = 2, .external_lex_state = 3}, + [806] = {.lex_state = 2, .external_lex_state = 3}, [807] = {.lex_state = 2, .external_lex_state = 3}, - [808] = {.lex_state = 14, .external_lex_state = 3}, - [809] = {.lex_state = 14, .external_lex_state = 3}, - [810] = {.lex_state = 14, .external_lex_state = 3}, - [811] = {.lex_state = 14, .external_lex_state = 3}, - [812] = {.lex_state = 14, .external_lex_state = 3}, - [813] = {.lex_state = 14, .external_lex_state = 3}, - [814] = {.lex_state = 14, .external_lex_state = 3}, - [815] = {.lex_state = 14, .external_lex_state = 3}, - [816] = {.lex_state = 14, .external_lex_state = 3}, - [817] = {.lex_state = 14, .external_lex_state = 3}, - [818] = {.lex_state = 14, .external_lex_state = 3}, - [819] = {.lex_state = 14, .external_lex_state = 3}, - [820] = {.lex_state = 14, .external_lex_state = 3}, - [821] = {.lex_state = 14, .external_lex_state = 3}, - [822] = {.lex_state = 14, .external_lex_state = 3}, + [808] = {.lex_state = 2, .external_lex_state = 3}, + [809] = {.lex_state = 2, .external_lex_state = 3}, + [810] = {.lex_state = 2, .external_lex_state = 3}, + [811] = {.lex_state = 2, .external_lex_state = 3}, + [812] = {.lex_state = 2, .external_lex_state = 3}, + [813] = {.lex_state = 2, .external_lex_state = 3}, + [814] = {.lex_state = 2, .external_lex_state = 3}, + [815] = {.lex_state = 2, .external_lex_state = 3}, + [816] = {.lex_state = 2, .external_lex_state = 3}, + [817] = {.lex_state = 2, .external_lex_state = 3}, + [818] = {.lex_state = 2, .external_lex_state = 3}, + [819] = {.lex_state = 2, .external_lex_state = 3}, + [820] = {.lex_state = 2, .external_lex_state = 3}, + [821] = {.lex_state = 3, .external_lex_state = 3}, + [822] = {.lex_state = 2, .external_lex_state = 3}, [823] = {.lex_state = 2, .external_lex_state = 3}, - [824] = {.lex_state = 14, .external_lex_state = 3}, + [824] = {.lex_state = 2, .external_lex_state = 3}, [825] = {.lex_state = 2, .external_lex_state = 3}, - [826] = {.lex_state = 14, .external_lex_state = 3}, + [826] = {.lex_state = 2, .external_lex_state = 3}, [827] = {.lex_state = 2, .external_lex_state = 3}, - [828] = {.lex_state = 14, .external_lex_state = 3}, + [828] = {.lex_state = 2, .external_lex_state = 3}, [829] = {.lex_state = 2, .external_lex_state = 3}, - [830] = {.lex_state = 2, .external_lex_state = 3}, + [830] = {.lex_state = 9, .external_lex_state = 3}, [831] = {.lex_state = 2, .external_lex_state = 3}, - [832] = {.lex_state = 14, .external_lex_state = 3}, - [833] = {.lex_state = 14, .external_lex_state = 3}, - [834] = {.lex_state = 14, .external_lex_state = 3}, - [835] = {.lex_state = 14, .external_lex_state = 3}, - [836] = {.lex_state = 14, .external_lex_state = 3}, - [837] = {.lex_state = 14, .external_lex_state = 3}, - [838] = {.lex_state = 14, .external_lex_state = 3}, + [832] = {.lex_state = 2, .external_lex_state = 3}, + [833] = {.lex_state = 2, .external_lex_state = 3}, + [834] = {.lex_state = 2, .external_lex_state = 3}, + [835] = {.lex_state = 2, .external_lex_state = 3}, + [836] = {.lex_state = 2, .external_lex_state = 3}, + [837] = {.lex_state = 2, .external_lex_state = 3}, + [838] = {.lex_state = 2, .external_lex_state = 3}, [839] = {.lex_state = 14, .external_lex_state = 3}, - [840] = {.lex_state = 14, .external_lex_state = 3}, + [840] = {.lex_state = 2, .external_lex_state = 3}, [841] = {.lex_state = 14, .external_lex_state = 3}, - [842] = {.lex_state = 14, .external_lex_state = 3}, - [843] = {.lex_state = 14, .external_lex_state = 3}, + [842] = {.lex_state = 2, .external_lex_state = 3}, + [843] = {.lex_state = 2, .external_lex_state = 3}, [844] = {.lex_state = 14, .external_lex_state = 3}, - [845] = {.lex_state = 2, .external_lex_state = 3}, + [845] = {.lex_state = 14, .external_lex_state = 3}, [846] = {.lex_state = 14, .external_lex_state = 3}, [847] = {.lex_state = 14, .external_lex_state = 3}, - [848] = {.lex_state = 14, .external_lex_state = 3}, + [848] = {.lex_state = 2, .external_lex_state = 3}, [849] = {.lex_state = 14, .external_lex_state = 3}, [850] = {.lex_state = 14, .external_lex_state = 3}, [851] = {.lex_state = 14, .external_lex_state = 3}, - [852] = {.lex_state = 14, .external_lex_state = 3}, + [852] = {.lex_state = 2, .external_lex_state = 3}, [853] = {.lex_state = 14, .external_lex_state = 3}, [854] = {.lex_state = 14, .external_lex_state = 3}, - [855] = {.lex_state = 14, .external_lex_state = 3}, - [856] = {.lex_state = 14, .external_lex_state = 3}, + [855] = {.lex_state = 2, .external_lex_state = 3}, + [856] = {.lex_state = 2, .external_lex_state = 3}, [857] = {.lex_state = 14, .external_lex_state = 3}, - [858] = {.lex_state = 14, .external_lex_state = 3}, - [859] = {.lex_state = 14, .external_lex_state = 3}, + [858] = {.lex_state = 2, .external_lex_state = 3}, + [859] = {.lex_state = 2, .external_lex_state = 3}, [860] = {.lex_state = 14, .external_lex_state = 3}, [861] = {.lex_state = 14, .external_lex_state = 3}, [862] = {.lex_state = 14, .external_lex_state = 3}, [863] = {.lex_state = 14, .external_lex_state = 3}, - [864] = {.lex_state = 14, .external_lex_state = 3}, + [864] = {.lex_state = 2, .external_lex_state = 3}, [865] = {.lex_state = 14, .external_lex_state = 3}, [866] = {.lex_state = 14, .external_lex_state = 3}, [867] = {.lex_state = 14, .external_lex_state = 3}, - [868] = {.lex_state = 14, .external_lex_state = 3}, - [869] = {.lex_state = 14, .external_lex_state = 3}, + [868] = {.lex_state = 2, .external_lex_state = 3}, + [869] = {.lex_state = 2, .external_lex_state = 3}, [870] = {.lex_state = 14, .external_lex_state = 3}, - [871] = {.lex_state = 14, .external_lex_state = 3}, - [872] = {.lex_state = 14, .external_lex_state = 3}, - [873] = {.lex_state = 14, .external_lex_state = 3}, + [871] = {.lex_state = 2, .external_lex_state = 3}, + [872] = {.lex_state = 2, .external_lex_state = 3}, + [873] = {.lex_state = 2, .external_lex_state = 3}, [874] = {.lex_state = 14, .external_lex_state = 3}, [875] = {.lex_state = 14, .external_lex_state = 3}, [876] = {.lex_state = 14, .external_lex_state = 3}, @@ -14234,14 +16907,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [878] = {.lex_state = 14, .external_lex_state = 3}, [879] = {.lex_state = 14, .external_lex_state = 3}, [880] = {.lex_state = 14, .external_lex_state = 3}, - [881] = {.lex_state = 14, .external_lex_state = 3}, + [881] = {.lex_state = 2, .external_lex_state = 3}, [882] = {.lex_state = 14, .external_lex_state = 3}, [883] = {.lex_state = 14, .external_lex_state = 3}, [884] = {.lex_state = 14, .external_lex_state = 3}, - [885] = {.lex_state = 14, .external_lex_state = 3}, + [885] = {.lex_state = 2, .external_lex_state = 3}, [886] = {.lex_state = 14, .external_lex_state = 3}, [887] = {.lex_state = 14, .external_lex_state = 3}, - [888] = {.lex_state = 14, .external_lex_state = 3}, + [888] = {.lex_state = 2, .external_lex_state = 3}, [889] = {.lex_state = 14, .external_lex_state = 3}, [890] = {.lex_state = 14, .external_lex_state = 3}, [891] = {.lex_state = 14, .external_lex_state = 3}, @@ -14255,15 +16928,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [899] = {.lex_state = 14, .external_lex_state = 3}, [900] = {.lex_state = 14, .external_lex_state = 3}, [901] = {.lex_state = 14, .external_lex_state = 3}, - [902] = {.lex_state = 14, .external_lex_state = 3}, + [902] = {.lex_state = 2, .external_lex_state = 3}, [903] = {.lex_state = 14, .external_lex_state = 3}, [904] = {.lex_state = 14, .external_lex_state = 3}, [905] = {.lex_state = 14, .external_lex_state = 3}, [906] = {.lex_state = 14, .external_lex_state = 3}, [907] = {.lex_state = 14, .external_lex_state = 3}, - [908] = {.lex_state = 14, .external_lex_state = 3}, - [909] = {.lex_state = 2, .external_lex_state = 3}, - [910] = {.lex_state = 2, .external_lex_state = 3}, + [908] = {.lex_state = 2, .external_lex_state = 3}, + [909] = {.lex_state = 14, .external_lex_state = 3}, + [910] = {.lex_state = 14, .external_lex_state = 3}, [911] = {.lex_state = 2, .external_lex_state = 3}, [912] = {.lex_state = 14, .external_lex_state = 3}, [913] = {.lex_state = 14, .external_lex_state = 3}, @@ -14273,60 +16946,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [917] = {.lex_state = 14, .external_lex_state = 3}, [918] = {.lex_state = 14, .external_lex_state = 3}, [919] = {.lex_state = 14, .external_lex_state = 3}, - [920] = {.lex_state = 2, .external_lex_state = 3}, + [920] = {.lex_state = 14, .external_lex_state = 3}, [921] = {.lex_state = 14, .external_lex_state = 3}, [922] = {.lex_state = 14, .external_lex_state = 3}, [923] = {.lex_state = 14, .external_lex_state = 3}, - [924] = {.lex_state = 2, .external_lex_state = 3}, - [925] = {.lex_state = 2, .external_lex_state = 3}, + [924] = {.lex_state = 14, .external_lex_state = 3}, + [925] = {.lex_state = 14, .external_lex_state = 3}, [926] = {.lex_state = 14, .external_lex_state = 3}, [927] = {.lex_state = 14, .external_lex_state = 3}, [928] = {.lex_state = 14, .external_lex_state = 3}, [929] = {.lex_state = 14, .external_lex_state = 3}, [930] = {.lex_state = 14, .external_lex_state = 3}, - [931] = {.lex_state = 14, .external_lex_state = 3}, - [932] = {.lex_state = 2, .external_lex_state = 3}, - [933] = {.lex_state = 2, .external_lex_state = 3}, + [931] = {.lex_state = 2, .external_lex_state = 3}, + [932] = {.lex_state = 14, .external_lex_state = 3}, + [933] = {.lex_state = 14, .external_lex_state = 3}, [934] = {.lex_state = 14, .external_lex_state = 3}, [935] = {.lex_state = 14, .external_lex_state = 3}, [936] = {.lex_state = 14, .external_lex_state = 3}, - [937] = {.lex_state = 2, .external_lex_state = 3}, - [938] = {.lex_state = 14, .external_lex_state = 3}, - [939] = {.lex_state = 3, .external_lex_state = 3}, + [937] = {.lex_state = 14, .external_lex_state = 3}, + [938] = {.lex_state = 2, .external_lex_state = 3}, + [939] = {.lex_state = 14, .external_lex_state = 3}, [940] = {.lex_state = 14, .external_lex_state = 3}, [941] = {.lex_state = 14, .external_lex_state = 3}, [942] = {.lex_state = 14, .external_lex_state = 3}, [943] = {.lex_state = 14, .external_lex_state = 3}, [944] = {.lex_state = 14, .external_lex_state = 3}, [945] = {.lex_state = 14, .external_lex_state = 3}, - [946] = {.lex_state = 14, .external_lex_state = 3}, - [947] = {.lex_state = 14, .external_lex_state = 3}, + [946] = {.lex_state = 2, .external_lex_state = 3}, + [947] = {.lex_state = 2, .external_lex_state = 3}, [948] = {.lex_state = 14, .external_lex_state = 3}, - [949] = {.lex_state = 14, .external_lex_state = 3}, + [949] = {.lex_state = 2, .external_lex_state = 3}, [950] = {.lex_state = 14, .external_lex_state = 3}, [951] = {.lex_state = 14, .external_lex_state = 3}, - [952] = {.lex_state = 2, .external_lex_state = 3}, + [952] = {.lex_state = 14, .external_lex_state = 3}, [953] = {.lex_state = 14, .external_lex_state = 3}, [954] = {.lex_state = 14, .external_lex_state = 3}, [955] = {.lex_state = 14, .external_lex_state = 3}, - [956] = {.lex_state = 2, .external_lex_state = 3}, + [956] = {.lex_state = 14, .external_lex_state = 3}, [957] = {.lex_state = 14, .external_lex_state = 3}, [958] = {.lex_state = 14, .external_lex_state = 3}, - [959] = {.lex_state = 14, .external_lex_state = 3}, + [959] = {.lex_state = 2, .external_lex_state = 3}, [960] = {.lex_state = 14, .external_lex_state = 3}, [961] = {.lex_state = 14, .external_lex_state = 3}, [962] = {.lex_state = 14, .external_lex_state = 3}, - [963] = {.lex_state = 14, .external_lex_state = 3}, + [963] = {.lex_state = 2, .external_lex_state = 3}, [964] = {.lex_state = 14, .external_lex_state = 3}, [965] = {.lex_state = 2, .external_lex_state = 3}, [966] = {.lex_state = 14, .external_lex_state = 3}, - [967] = {.lex_state = 14, .external_lex_state = 3}, + [967] = {.lex_state = 2, .external_lex_state = 3}, [968] = {.lex_state = 14, .external_lex_state = 3}, [969] = {.lex_state = 14, .external_lex_state = 3}, - [970] = {.lex_state = 14, .external_lex_state = 3}, - [971] = {.lex_state = 14, .external_lex_state = 3}, - [972] = {.lex_state = 14, .external_lex_state = 3}, - [973] = {.lex_state = 14, .external_lex_state = 3}, + [970] = {.lex_state = 2, .external_lex_state = 3}, + [971] = {.lex_state = 2, .external_lex_state = 3}, + [972] = {.lex_state = 2, .external_lex_state = 3}, + [973] = {.lex_state = 2, .external_lex_state = 3}, [974] = {.lex_state = 14, .external_lex_state = 3}, [975] = {.lex_state = 14, .external_lex_state = 3}, [976] = {.lex_state = 14, .external_lex_state = 3}, @@ -14334,20 +17007,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [978] = {.lex_state = 14, .external_lex_state = 3}, [979] = {.lex_state = 14, .external_lex_state = 3}, [980] = {.lex_state = 14, .external_lex_state = 3}, - [981] = {.lex_state = 14, .external_lex_state = 3}, + [981] = {.lex_state = 2, .external_lex_state = 3}, [982] = {.lex_state = 14, .external_lex_state = 3}, - [983] = {.lex_state = 14, .external_lex_state = 3}, + [983] = {.lex_state = 2, .external_lex_state = 3}, [984] = {.lex_state = 14, .external_lex_state = 3}, [985] = {.lex_state = 14, .external_lex_state = 3}, - [986] = {.lex_state = 14, .external_lex_state = 3}, + [986] = {.lex_state = 2, .external_lex_state = 3}, [987] = {.lex_state = 14, .external_lex_state = 3}, [988] = {.lex_state = 14, .external_lex_state = 3}, [989] = {.lex_state = 14, .external_lex_state = 3}, [990] = {.lex_state = 14, .external_lex_state = 3}, [991] = {.lex_state = 14, .external_lex_state = 3}, - [992] = {.lex_state = 14, .external_lex_state = 3}, + [992] = {.lex_state = 2, .external_lex_state = 3}, [993] = {.lex_state = 14, .external_lex_state = 3}, - [994] = {.lex_state = 14, .external_lex_state = 3}, + [994] = {.lex_state = 2, .external_lex_state = 3}, [995] = {.lex_state = 14, .external_lex_state = 3}, [996] = {.lex_state = 14, .external_lex_state = 3}, [997] = {.lex_state = 14, .external_lex_state = 3}, @@ -14355,235 +17028,235 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [999] = {.lex_state = 14, .external_lex_state = 3}, [1000] = {.lex_state = 14, .external_lex_state = 3}, [1001] = {.lex_state = 14, .external_lex_state = 3}, - [1002] = {.lex_state = 14, .external_lex_state = 3}, - [1003] = {.lex_state = 2, .external_lex_state = 3}, - [1004] = {.lex_state = 14, .external_lex_state = 3}, + [1002] = {.lex_state = 2, .external_lex_state = 3}, + [1003] = {.lex_state = 14, .external_lex_state = 3}, + [1004] = {.lex_state = 2, .external_lex_state = 3}, [1005] = {.lex_state = 14, .external_lex_state = 3}, - [1006] = {.lex_state = 14, .external_lex_state = 3}, - [1007] = {.lex_state = 2, .external_lex_state = 3}, + [1006] = {.lex_state = 2, .external_lex_state = 3}, + [1007] = {.lex_state = 14, .external_lex_state = 3}, [1008] = {.lex_state = 14, .external_lex_state = 3}, - [1009] = {.lex_state = 14, .external_lex_state = 3}, + [1009] = {.lex_state = 2, .external_lex_state = 3}, [1010] = {.lex_state = 14, .external_lex_state = 3}, - [1011] = {.lex_state = 2, .external_lex_state = 3}, + [1011] = {.lex_state = 14, .external_lex_state = 3}, [1012] = {.lex_state = 14, .external_lex_state = 3}, [1013] = {.lex_state = 14, .external_lex_state = 3}, - [1014] = {.lex_state = 14, .external_lex_state = 3}, + [1014] = {.lex_state = 2, .external_lex_state = 3}, [1015] = {.lex_state = 14, .external_lex_state = 3}, [1016] = {.lex_state = 14, .external_lex_state = 3}, [1017] = {.lex_state = 14, .external_lex_state = 3}, [1018] = {.lex_state = 14, .external_lex_state = 3}, - [1019] = {.lex_state = 14, .external_lex_state = 3}, - [1020] = {.lex_state = 14, .external_lex_state = 3}, - [1021] = {.lex_state = 14, .external_lex_state = 3}, - [1022] = {.lex_state = 14, .external_lex_state = 3}, + [1019] = {.lex_state = 2, .external_lex_state = 3}, + [1020] = {.lex_state = 2, .external_lex_state = 3}, + [1021] = {.lex_state = 2, .external_lex_state = 3}, + [1022] = {.lex_state = 2, .external_lex_state = 3}, [1023] = {.lex_state = 14, .external_lex_state = 3}, [1024] = {.lex_state = 14, .external_lex_state = 3}, - [1025] = {.lex_state = 14, .external_lex_state = 3}, - [1026] = {.lex_state = 14, .external_lex_state = 3}, - [1027] = {.lex_state = 14, .external_lex_state = 3}, - [1028] = {.lex_state = 2, .external_lex_state = 3}, - [1029] = {.lex_state = 14, .external_lex_state = 3}, + [1025] = {.lex_state = 2, .external_lex_state = 3}, + [1026] = {.lex_state = 2, .external_lex_state = 3}, + [1027] = {.lex_state = 2, .external_lex_state = 3}, + [1028] = {.lex_state = 14, .external_lex_state = 3}, + [1029] = {.lex_state = 2, .external_lex_state = 3}, [1030] = {.lex_state = 14, .external_lex_state = 3}, [1031] = {.lex_state = 14, .external_lex_state = 3}, [1032] = {.lex_state = 14, .external_lex_state = 3}, [1033] = {.lex_state = 14, .external_lex_state = 3}, [1034] = {.lex_state = 14, .external_lex_state = 3}, - [1035] = {.lex_state = 2, .external_lex_state = 3}, + [1035] = {.lex_state = 14, .external_lex_state = 3}, [1036] = {.lex_state = 14, .external_lex_state = 3}, - [1037] = {.lex_state = 14, .external_lex_state = 3}, + [1037] = {.lex_state = 2, .external_lex_state = 3}, [1038] = {.lex_state = 14, .external_lex_state = 3}, [1039] = {.lex_state = 14, .external_lex_state = 3}, [1040] = {.lex_state = 14, .external_lex_state = 3}, [1041] = {.lex_state = 14, .external_lex_state = 3}, - [1042] = {.lex_state = 14, .external_lex_state = 3}, + [1042] = {.lex_state = 2, .external_lex_state = 3}, [1043] = {.lex_state = 2, .external_lex_state = 3}, [1044] = {.lex_state = 14, .external_lex_state = 3}, - [1045] = {.lex_state = 14, .external_lex_state = 3}, + [1045] = {.lex_state = 2, .external_lex_state = 3}, [1046] = {.lex_state = 14, .external_lex_state = 3}, [1047] = {.lex_state = 14, .external_lex_state = 3}, - [1048] = {.lex_state = 2, .external_lex_state = 3}, + [1048] = {.lex_state = 14, .external_lex_state = 3}, [1049] = {.lex_state = 14, .external_lex_state = 3}, - [1050] = {.lex_state = 2, .external_lex_state = 3}, + [1050] = {.lex_state = 14, .external_lex_state = 3}, [1051] = {.lex_state = 14, .external_lex_state = 3}, - [1052] = {.lex_state = 2, .external_lex_state = 3}, + [1052] = {.lex_state = 14, .external_lex_state = 3}, [1053] = {.lex_state = 14, .external_lex_state = 3}, [1054] = {.lex_state = 2, .external_lex_state = 3}, [1055] = {.lex_state = 14, .external_lex_state = 3}, [1056] = {.lex_state = 14, .external_lex_state = 3}, - [1057] = {.lex_state = 2, .external_lex_state = 3}, - [1058] = {.lex_state = 2, .external_lex_state = 3}, - [1059] = {.lex_state = 2, .external_lex_state = 3}, - [1060] = {.lex_state = 2, .external_lex_state = 3}, - [1061] = {.lex_state = 2, .external_lex_state = 3}, + [1057] = {.lex_state = 14, .external_lex_state = 3}, + [1058] = {.lex_state = 14, .external_lex_state = 3}, + [1059] = {.lex_state = 14, .external_lex_state = 3}, + [1060] = {.lex_state = 14, .external_lex_state = 3}, + [1061] = {.lex_state = 14, .external_lex_state = 3}, [1062] = {.lex_state = 2, .external_lex_state = 3}, - [1063] = {.lex_state = 2, .external_lex_state = 3}, + [1063] = {.lex_state = 14, .external_lex_state = 3}, [1064] = {.lex_state = 2, .external_lex_state = 3}, [1065] = {.lex_state = 2, .external_lex_state = 3}, - [1066] = {.lex_state = 2, .external_lex_state = 3}, - [1067] = {.lex_state = 2, .external_lex_state = 3}, - [1068] = {.lex_state = 2, .external_lex_state = 3}, - [1069] = {.lex_state = 4, .external_lex_state = 3}, - [1070] = {.lex_state = 2, .external_lex_state = 3}, - [1071] = {.lex_state = 2, .external_lex_state = 3}, - [1072] = {.lex_state = 2, .external_lex_state = 3}, - [1073] = {.lex_state = 2, .external_lex_state = 3}, - [1074] = {.lex_state = 2, .external_lex_state = 3}, - [1075] = {.lex_state = 2, .external_lex_state = 3}, - [1076] = {.lex_state = 2, .external_lex_state = 3}, - [1077] = {.lex_state = 2, .external_lex_state = 3}, - [1078] = {.lex_state = 2, .external_lex_state = 3}, - [1079] = {.lex_state = 2, .external_lex_state = 3}, - [1080] = {.lex_state = 2, .external_lex_state = 3}, - [1081] = {.lex_state = 2, .external_lex_state = 3}, - [1082] = {.lex_state = 2, .external_lex_state = 3}, + [1066] = {.lex_state = 14, .external_lex_state = 3}, + [1067] = {.lex_state = 14, .external_lex_state = 3}, + [1068] = {.lex_state = 14, .external_lex_state = 3}, + [1069] = {.lex_state = 14, .external_lex_state = 3}, + [1070] = {.lex_state = 14, .external_lex_state = 3}, + [1071] = {.lex_state = 14, .external_lex_state = 3}, + [1072] = {.lex_state = 14, .external_lex_state = 3}, + [1073] = {.lex_state = 14, .external_lex_state = 3}, + [1074] = {.lex_state = 14, .external_lex_state = 3}, + [1075] = {.lex_state = 14, .external_lex_state = 3}, + [1076] = {.lex_state = 14, .external_lex_state = 3}, + [1077] = {.lex_state = 14, .external_lex_state = 3}, + [1078] = {.lex_state = 14, .external_lex_state = 3}, + [1079] = {.lex_state = 14, .external_lex_state = 3}, + [1080] = {.lex_state = 14, .external_lex_state = 3}, + [1081] = {.lex_state = 14, .external_lex_state = 3}, + [1082] = {.lex_state = 14, .external_lex_state = 3}, [1083] = {.lex_state = 2, .external_lex_state = 3}, - [1084] = {.lex_state = 2, .external_lex_state = 3}, - [1085] = {.lex_state = 2, .external_lex_state = 3}, + [1084] = {.lex_state = 14, .external_lex_state = 3}, + [1085] = {.lex_state = 14, .external_lex_state = 3}, [1086] = {.lex_state = 2, .external_lex_state = 3}, - [1087] = {.lex_state = 5, .external_lex_state = 2}, + [1087] = {.lex_state = 2, .external_lex_state = 3}, [1088] = {.lex_state = 2, .external_lex_state = 3}, [1089] = {.lex_state = 2, .external_lex_state = 3}, [1090] = {.lex_state = 2, .external_lex_state = 3}, [1091] = {.lex_state = 2, .external_lex_state = 3}, - [1092] = {.lex_state = 5, .external_lex_state = 2}, - [1093] = {.lex_state = 2, .external_lex_state = 3}, - [1094] = {.lex_state = 2, .external_lex_state = 3}, - [1095] = {.lex_state = 2, .external_lex_state = 3}, + [1092] = {.lex_state = 2, .external_lex_state = 3}, + [1093] = {.lex_state = 14, .external_lex_state = 3}, + [1094] = {.lex_state = 14, .external_lex_state = 3}, + [1095] = {.lex_state = 14, .external_lex_state = 3}, [1096] = {.lex_state = 2, .external_lex_state = 3}, - [1097] = {.lex_state = 4, .external_lex_state = 3}, - [1098] = {.lex_state = 4, .external_lex_state = 3}, - [1099] = {.lex_state = 2, .external_lex_state = 3}, - [1100] = {.lex_state = 2, .external_lex_state = 3}, + [1097] = {.lex_state = 14, .external_lex_state = 3}, + [1098] = {.lex_state = 14, .external_lex_state = 3}, + [1099] = {.lex_state = 14, .external_lex_state = 3}, + [1100] = {.lex_state = 14, .external_lex_state = 3}, [1101] = {.lex_state = 2, .external_lex_state = 3}, - [1102] = {.lex_state = 2, .external_lex_state = 3}, - [1103] = {.lex_state = 2, .external_lex_state = 3}, - [1104] = {.lex_state = 4, .external_lex_state = 3}, + [1102] = {.lex_state = 14, .external_lex_state = 3}, + [1103] = {.lex_state = 14, .external_lex_state = 3}, + [1104] = {.lex_state = 14, .external_lex_state = 3}, [1105] = {.lex_state = 2, .external_lex_state = 3}, - [1106] = {.lex_state = 2, .external_lex_state = 3}, + [1106] = {.lex_state = 14, .external_lex_state = 3}, [1107] = {.lex_state = 2, .external_lex_state = 3}, [1108] = {.lex_state = 2, .external_lex_state = 3}, [1109] = {.lex_state = 2, .external_lex_state = 3}, [1110] = {.lex_state = 2, .external_lex_state = 3}, - [1111] = {.lex_state = 2, .external_lex_state = 3}, - [1112] = {.lex_state = 2, .external_lex_state = 3}, - [1113] = {.lex_state = 2, .external_lex_state = 3}, + [1111] = {.lex_state = 14, .external_lex_state = 3}, + [1112] = {.lex_state = 14, .external_lex_state = 3}, + [1113] = {.lex_state = 14, .external_lex_state = 3}, [1114] = {.lex_state = 2, .external_lex_state = 3}, - [1115] = {.lex_state = 2, .external_lex_state = 3}, - [1116] = {.lex_state = 2, .external_lex_state = 3}, + [1115] = {.lex_state = 14, .external_lex_state = 3}, + [1116] = {.lex_state = 14, .external_lex_state = 3}, [1117] = {.lex_state = 2, .external_lex_state = 3}, [1118] = {.lex_state = 2, .external_lex_state = 3}, [1119] = {.lex_state = 2, .external_lex_state = 3}, - [1120] = {.lex_state = 2, .external_lex_state = 3}, + [1120] = {.lex_state = 14, .external_lex_state = 3}, [1121] = {.lex_state = 2, .external_lex_state = 3}, [1122] = {.lex_state = 2, .external_lex_state = 3}, - [1123] = {.lex_state = 2, .external_lex_state = 3}, + [1123] = {.lex_state = 14, .external_lex_state = 3}, [1124] = {.lex_state = 2, .external_lex_state = 3}, - [1125] = {.lex_state = 2, .external_lex_state = 3}, - [1126] = {.lex_state = 2, .external_lex_state = 3}, + [1125] = {.lex_state = 14, .external_lex_state = 3}, + [1126] = {.lex_state = 14, .external_lex_state = 3}, [1127] = {.lex_state = 2, .external_lex_state = 3}, [1128] = {.lex_state = 2, .external_lex_state = 3}, [1129] = {.lex_state = 2, .external_lex_state = 3}, - [1130] = {.lex_state = 2, .external_lex_state = 3}, + [1130] = {.lex_state = 14, .external_lex_state = 3}, [1131] = {.lex_state = 2, .external_lex_state = 3}, - [1132] = {.lex_state = 2, .external_lex_state = 3}, - [1133] = {.lex_state = 2, .external_lex_state = 3}, - [1134] = {.lex_state = 2, .external_lex_state = 3}, - [1135] = {.lex_state = 2, .external_lex_state = 3}, - [1136] = {.lex_state = 2, .external_lex_state = 3}, - [1137] = {.lex_state = 2, .external_lex_state = 3}, - [1138] = {.lex_state = 2, .external_lex_state = 3}, + [1132] = {.lex_state = 14, .external_lex_state = 3}, + [1133] = {.lex_state = 14, .external_lex_state = 3}, + [1134] = {.lex_state = 14, .external_lex_state = 3}, + [1135] = {.lex_state = 14, .external_lex_state = 3}, + [1136] = {.lex_state = 14, .external_lex_state = 3}, + [1137] = {.lex_state = 14, .external_lex_state = 3}, + [1138] = {.lex_state = 14, .external_lex_state = 3}, [1139] = {.lex_state = 2, .external_lex_state = 3}, - [1140] = {.lex_state = 2, .external_lex_state = 3}, - [1141] = {.lex_state = 2, .external_lex_state = 3}, - [1142] = {.lex_state = 2, .external_lex_state = 3}, + [1140] = {.lex_state = 14, .external_lex_state = 3}, + [1141] = {.lex_state = 14, .external_lex_state = 3}, + [1142] = {.lex_state = 14, .external_lex_state = 3}, [1143] = {.lex_state = 2, .external_lex_state = 3}, - [1144] = {.lex_state = 4, .external_lex_state = 3}, - [1145] = {.lex_state = 2, .external_lex_state = 3}, + [1144] = {.lex_state = 14, .external_lex_state = 3}, + [1145] = {.lex_state = 14, .external_lex_state = 3}, [1146] = {.lex_state = 2, .external_lex_state = 3}, - [1147] = {.lex_state = 4, .external_lex_state = 3}, - [1148] = {.lex_state = 2, .external_lex_state = 3}, - [1149] = {.lex_state = 4, .external_lex_state = 3}, - [1150] = {.lex_state = 2, .external_lex_state = 3}, + [1147] = {.lex_state = 14, .external_lex_state = 3}, + [1148] = {.lex_state = 14, .external_lex_state = 3}, + [1149] = {.lex_state = 14, .external_lex_state = 3}, + [1150] = {.lex_state = 14, .external_lex_state = 3}, [1151] = {.lex_state = 2, .external_lex_state = 3}, - [1152] = {.lex_state = 4, .external_lex_state = 3}, - [1153] = {.lex_state = 2, .external_lex_state = 3}, - [1154] = {.lex_state = 4, .external_lex_state = 3}, + [1152] = {.lex_state = 14, .external_lex_state = 3}, + [1153] = {.lex_state = 14, .external_lex_state = 3}, + [1154] = {.lex_state = 14, .external_lex_state = 3}, [1155] = {.lex_state = 2, .external_lex_state = 3}, - [1156] = {.lex_state = 2, .external_lex_state = 3}, - [1157] = {.lex_state = 2, .external_lex_state = 3}, - [1158] = {.lex_state = 2, .external_lex_state = 3}, - [1159] = {.lex_state = 2, .external_lex_state = 3}, + [1156] = {.lex_state = 14, .external_lex_state = 3}, + [1157] = {.lex_state = 14, .external_lex_state = 3}, + [1158] = {.lex_state = 14, .external_lex_state = 3}, + [1159] = {.lex_state = 14, .external_lex_state = 3}, [1160] = {.lex_state = 2, .external_lex_state = 3}, - [1161] = {.lex_state = 5, .external_lex_state = 2}, + [1161] = {.lex_state = 14, .external_lex_state = 3}, [1162] = {.lex_state = 2, .external_lex_state = 3}, [1163] = {.lex_state = 2, .external_lex_state = 3}, [1164] = {.lex_state = 2, .external_lex_state = 3}, - [1165] = {.lex_state = 2, .external_lex_state = 3}, + [1165] = {.lex_state = 4, .external_lex_state = 3}, [1166] = {.lex_state = 2, .external_lex_state = 3}, [1167] = {.lex_state = 2, .external_lex_state = 3}, [1168] = {.lex_state = 2, .external_lex_state = 3}, [1169] = {.lex_state = 2, .external_lex_state = 3}, - [1170] = {.lex_state = 5, .external_lex_state = 2}, + [1170] = {.lex_state = 2, .external_lex_state = 3}, [1171] = {.lex_state = 2, .external_lex_state = 3}, [1172] = {.lex_state = 2, .external_lex_state = 3}, [1173] = {.lex_state = 2, .external_lex_state = 3}, [1174] = {.lex_state = 2, .external_lex_state = 3}, - [1175] = {.lex_state = 2, .external_lex_state = 3}, - [1176] = {.lex_state = 2, .external_lex_state = 3}, + [1175] = {.lex_state = 4, .external_lex_state = 3}, + [1176] = {.lex_state = 4, .external_lex_state = 3}, [1177] = {.lex_state = 2, .external_lex_state = 3}, - [1178] = {.lex_state = 2, .external_lex_state = 3}, - [1179] = {.lex_state = 2, .external_lex_state = 3}, - [1180] = {.lex_state = 5, .external_lex_state = 2}, + [1178] = {.lex_state = 4, .external_lex_state = 3}, + [1179] = {.lex_state = 5, .external_lex_state = 2}, + [1180] = {.lex_state = 4, .external_lex_state = 3}, [1181] = {.lex_state = 4, .external_lex_state = 3}, [1182] = {.lex_state = 4, .external_lex_state = 3}, [1183] = {.lex_state = 4, .external_lex_state = 3}, - [1184] = {.lex_state = 4, .external_lex_state = 3}, - [1185] = {.lex_state = 4, .external_lex_state = 3}, - [1186] = {.lex_state = 2, .external_lex_state = 3}, - [1187] = {.lex_state = 4, .external_lex_state = 3}, - [1188] = {.lex_state = 4, .external_lex_state = 3}, - [1189] = {.lex_state = 4, .external_lex_state = 3}, - [1190] = {.lex_state = 2, .external_lex_state = 3}, - [1191] = {.lex_state = 5, .external_lex_state = 2}, - [1192] = {.lex_state = 5, .external_lex_state = 2}, + [1184] = {.lex_state = 2, .external_lex_state = 3}, + [1185] = {.lex_state = 2, .external_lex_state = 3}, + [1186] = {.lex_state = 4, .external_lex_state = 3}, + [1187] = {.lex_state = 2, .external_lex_state = 3}, + [1188] = {.lex_state = 2, .external_lex_state = 3}, + [1189] = {.lex_state = 2, .external_lex_state = 3}, + [1190] = {.lex_state = 5, .external_lex_state = 2}, + [1191] = {.lex_state = 2, .external_lex_state = 3}, + [1192] = {.lex_state = 2, .external_lex_state = 3}, [1193] = {.lex_state = 5, .external_lex_state = 2}, [1194] = {.lex_state = 5, .external_lex_state = 2}, [1195] = {.lex_state = 2, .external_lex_state = 3}, - [1196] = {.lex_state = 2, .external_lex_state = 3}, + [1196] = {.lex_state = 5, .external_lex_state = 2}, [1197] = {.lex_state = 2, .external_lex_state = 3}, - [1198] = {.lex_state = 2, .external_lex_state = 3}, + [1198] = {.lex_state = 4, .external_lex_state = 3}, [1199] = {.lex_state = 4, .external_lex_state = 3}, [1200] = {.lex_state = 4, .external_lex_state = 3}, [1201] = {.lex_state = 4, .external_lex_state = 3}, - [1202] = {.lex_state = 2, .external_lex_state = 3}, - [1203] = {.lex_state = 5, .external_lex_state = 2}, - [1204] = {.lex_state = 2, .external_lex_state = 3}, + [1202] = {.lex_state = 4, .external_lex_state = 3}, + [1203] = {.lex_state = 4, .external_lex_state = 3}, + [1204] = {.lex_state = 4, .external_lex_state = 3}, [1205] = {.lex_state = 4, .external_lex_state = 3}, [1206] = {.lex_state = 2, .external_lex_state = 3}, - [1207] = {.lex_state = 2, .external_lex_state = 3}, - [1208] = {.lex_state = 4, .external_lex_state = 3}, - [1209] = {.lex_state = 2, .external_lex_state = 3}, - [1210] = {.lex_state = 4, .external_lex_state = 3}, - [1211] = {.lex_state = 4, .external_lex_state = 3}, + [1207] = {.lex_state = 5, .external_lex_state = 2}, + [1208] = {.lex_state = 5, .external_lex_state = 2}, + [1209] = {.lex_state = 5, .external_lex_state = 2}, + [1210] = {.lex_state = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 5, .external_lex_state = 2}, [1212] = {.lex_state = 2, .external_lex_state = 3}, [1213] = {.lex_state = 2, .external_lex_state = 3}, [1214] = {.lex_state = 4, .external_lex_state = 3}, - [1215] = {.lex_state = 4, .external_lex_state = 3}, - [1216] = {.lex_state = 2, .external_lex_state = 3}, + [1215] = {.lex_state = 2, .external_lex_state = 3}, + [1216] = {.lex_state = 4, .external_lex_state = 3}, [1217] = {.lex_state = 2, .external_lex_state = 3}, - [1218] = {.lex_state = 2, .external_lex_state = 3}, - [1219] = {.lex_state = 2, .external_lex_state = 3}, - [1220] = {.lex_state = 2, .external_lex_state = 3}, - [1221] = {.lex_state = 2, .external_lex_state = 3}, + [1218] = {.lex_state = 4, .external_lex_state = 3}, + [1219] = {.lex_state = 4, .external_lex_state = 3}, + [1220] = {.lex_state = 4, .external_lex_state = 3}, + [1221] = {.lex_state = 4, .external_lex_state = 3}, [1222] = {.lex_state = 2, .external_lex_state = 3}, [1223] = {.lex_state = 2, .external_lex_state = 3}, [1224] = {.lex_state = 2, .external_lex_state = 3}, [1225] = {.lex_state = 2, .external_lex_state = 3}, - [1226] = {.lex_state = 2, .external_lex_state = 3}, - [1227] = {.lex_state = 2, .external_lex_state = 3}, - [1228] = {.lex_state = 2, .external_lex_state = 3}, + [1226] = {.lex_state = 5, .external_lex_state = 2}, + [1227] = {.lex_state = 4, .external_lex_state = 3}, + [1228] = {.lex_state = 4, .external_lex_state = 3}, [1229] = {.lex_state = 2, .external_lex_state = 3}, - [1230] = {.lex_state = 2, .external_lex_state = 3}, + [1230] = {.lex_state = 4, .external_lex_state = 3}, [1231] = {.lex_state = 2, .external_lex_state = 3}, [1232] = {.lex_state = 2, .external_lex_state = 3}, [1233] = {.lex_state = 2, .external_lex_state = 3}, @@ -14618,13 +17291,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1262] = {.lex_state = 2, .external_lex_state = 3}, [1263] = {.lex_state = 2, .external_lex_state = 3}, [1264] = {.lex_state = 2, .external_lex_state = 3}, - [1265] = {.lex_state = 4, .external_lex_state = 3}, + [1265] = {.lex_state = 2, .external_lex_state = 3}, [1266] = {.lex_state = 2, .external_lex_state = 3}, [1267] = {.lex_state = 2, .external_lex_state = 3}, [1268] = {.lex_state = 2, .external_lex_state = 3}, [1269] = {.lex_state = 2, .external_lex_state = 3}, [1270] = {.lex_state = 2, .external_lex_state = 3}, - [1271] = {.lex_state = 2, .external_lex_state = 3}, + [1271] = {.lex_state = 4, .external_lex_state = 3}, [1272] = {.lex_state = 2, .external_lex_state = 3}, [1273] = {.lex_state = 2, .external_lex_state = 3}, [1274] = {.lex_state = 2, .external_lex_state = 3}, @@ -14654,7 +17327,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1298] = {.lex_state = 2, .external_lex_state = 3}, [1299] = {.lex_state = 2, .external_lex_state = 3}, [1300] = {.lex_state = 2, .external_lex_state = 3}, - [1301] = {.lex_state = 4, .external_lex_state = 3}, + [1301] = {.lex_state = 2, .external_lex_state = 3}, [1302] = {.lex_state = 2, .external_lex_state = 3}, [1303] = {.lex_state = 2, .external_lex_state = 3}, [1304] = {.lex_state = 2, .external_lex_state = 3}, @@ -14672,7 +17345,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1316] = {.lex_state = 2, .external_lex_state = 3}, [1317] = {.lex_state = 2, .external_lex_state = 3}, [1318] = {.lex_state = 2, .external_lex_state = 3}, - [1319] = {.lex_state = 4, .external_lex_state = 3}, + [1319] = {.lex_state = 2, .external_lex_state = 3}, [1320] = {.lex_state = 2, .external_lex_state = 3}, [1321] = {.lex_state = 2, .external_lex_state = 3}, [1322] = {.lex_state = 2, .external_lex_state = 3}, @@ -14681,100 +17354,100 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1325] = {.lex_state = 2, .external_lex_state = 3}, [1326] = {.lex_state = 2, .external_lex_state = 3}, [1327] = {.lex_state = 2, .external_lex_state = 3}, - [1328] = {.lex_state = 2, .external_lex_state = 3}, + [1328] = {.lex_state = 4, .external_lex_state = 3}, [1329] = {.lex_state = 2, .external_lex_state = 3}, [1330] = {.lex_state = 2, .external_lex_state = 3}, [1331] = {.lex_state = 2, .external_lex_state = 3}, [1332] = {.lex_state = 2, .external_lex_state = 3}, [1333] = {.lex_state = 2, .external_lex_state = 3}, - [1334] = {.lex_state = 4, .external_lex_state = 3}, + [1334] = {.lex_state = 2, .external_lex_state = 3}, [1335] = {.lex_state = 4, .external_lex_state = 3}, - [1336] = {.lex_state = 4, .external_lex_state = 3}, - [1337] = {.lex_state = 4, .external_lex_state = 3}, - [1338] = {.lex_state = 4, .external_lex_state = 3}, - [1339] = {.lex_state = 4, .external_lex_state = 3}, - [1340] = {.lex_state = 4, .external_lex_state = 3}, - [1341] = {.lex_state = 4, .external_lex_state = 3}, - [1342] = {.lex_state = 4, .external_lex_state = 3}, - [1343] = {.lex_state = 4, .external_lex_state = 3}, - [1344] = {.lex_state = 18, .external_lex_state = 3}, - [1345] = {.lex_state = 18, .external_lex_state = 3}, - [1346] = {.lex_state = 8, .external_lex_state = 3}, - [1347] = {.lex_state = 8, .external_lex_state = 3}, - [1348] = {.lex_state = 8, .external_lex_state = 3}, - [1349] = {.lex_state = 8, .external_lex_state = 3}, - [1350] = {.lex_state = 8, .external_lex_state = 3}, - [1351] = {.lex_state = 8, .external_lex_state = 3}, - [1352] = {.lex_state = 8, .external_lex_state = 3}, - [1353] = {.lex_state = 8, .external_lex_state = 3}, - [1354] = {.lex_state = 8, .external_lex_state = 3}, - [1355] = {.lex_state = 8, .external_lex_state = 3}, - [1356] = {.lex_state = 8, .external_lex_state = 3}, - [1357] = {.lex_state = 8, .external_lex_state = 3}, + [1336] = {.lex_state = 2, .external_lex_state = 3}, + [1337] = {.lex_state = 2, .external_lex_state = 3}, + [1338] = {.lex_state = 2, .external_lex_state = 3}, + [1339] = {.lex_state = 2, .external_lex_state = 3}, + [1340] = {.lex_state = 2, .external_lex_state = 3}, + [1341] = {.lex_state = 2, .external_lex_state = 3}, + [1342] = {.lex_state = 2, .external_lex_state = 3}, + [1343] = {.lex_state = 2, .external_lex_state = 3}, + [1344] = {.lex_state = 2, .external_lex_state = 3}, + [1345] = {.lex_state = 2, .external_lex_state = 3}, + [1346] = {.lex_state = 2, .external_lex_state = 3}, + [1347] = {.lex_state = 2, .external_lex_state = 3}, + [1348] = {.lex_state = 2, .external_lex_state = 3}, + [1349] = {.lex_state = 2, .external_lex_state = 3}, + [1350] = {.lex_state = 4, .external_lex_state = 3}, + [1351] = {.lex_state = 4, .external_lex_state = 3}, + [1352] = {.lex_state = 4, .external_lex_state = 3}, + [1353] = {.lex_state = 4, .external_lex_state = 3}, + [1354] = {.lex_state = 4, .external_lex_state = 3}, + [1355] = {.lex_state = 4, .external_lex_state = 3}, + [1356] = {.lex_state = 4, .external_lex_state = 3}, + [1357] = {.lex_state = 4, .external_lex_state = 3}, [1358] = {.lex_state = 4, .external_lex_state = 3}, [1359] = {.lex_state = 4, .external_lex_state = 3}, [1360] = {.lex_state = 18, .external_lex_state = 3}, - [1361] = {.lex_state = 4, .external_lex_state = 3}, - [1362] = {.lex_state = 18, .external_lex_state = 3}, - [1363] = {.lex_state = 4, .external_lex_state = 3}, - [1364] = {.lex_state = 18, .external_lex_state = 3}, - [1365] = {.lex_state = 4, .external_lex_state = 3}, - [1366] = {.lex_state = 18, .external_lex_state = 3}, - [1367] = {.lex_state = 4, .external_lex_state = 3}, - [1368] = {.lex_state = 18, .external_lex_state = 3}, - [1369] = {.lex_state = 18, .external_lex_state = 3}, - [1370] = {.lex_state = 4, .external_lex_state = 3}, - [1371] = {.lex_state = 18, .external_lex_state = 3}, - [1372] = {.lex_state = 18, .external_lex_state = 3}, - [1373] = {.lex_state = 4, .external_lex_state = 3}, + [1361] = {.lex_state = 18, .external_lex_state = 3}, + [1362] = {.lex_state = 8, .external_lex_state = 3}, + [1363] = {.lex_state = 8, .external_lex_state = 3}, + [1364] = {.lex_state = 8, .external_lex_state = 3}, + [1365] = {.lex_state = 8, .external_lex_state = 3}, + [1366] = {.lex_state = 8, .external_lex_state = 3}, + [1367] = {.lex_state = 8, .external_lex_state = 3}, + [1368] = {.lex_state = 8, .external_lex_state = 3}, + [1369] = {.lex_state = 8, .external_lex_state = 3}, + [1370] = {.lex_state = 8, .external_lex_state = 3}, + [1371] = {.lex_state = 8, .external_lex_state = 3}, + [1372] = {.lex_state = 8, .external_lex_state = 3}, + [1373] = {.lex_state = 8, .external_lex_state = 3}, [1374] = {.lex_state = 18, .external_lex_state = 3}, - [1375] = {.lex_state = 4, .external_lex_state = 3}, - [1376] = {.lex_state = 4, .external_lex_state = 3}, + [1375] = {.lex_state = 18, .external_lex_state = 3}, + [1376] = {.lex_state = 18, .external_lex_state = 3}, [1377] = {.lex_state = 4, .external_lex_state = 3}, [1378] = {.lex_state = 4, .external_lex_state = 3}, [1379] = {.lex_state = 4, .external_lex_state = 3}, - [1380] = {.lex_state = 8, .external_lex_state = 3}, - [1381] = {.lex_state = 8, .external_lex_state = 3}, - [1382] = {.lex_state = 4, .external_lex_state = 3}, + [1380] = {.lex_state = 18, .external_lex_state = 3}, + [1381] = {.lex_state = 18, .external_lex_state = 3}, + [1382] = {.lex_state = 18, .external_lex_state = 3}, [1383] = {.lex_state = 4, .external_lex_state = 3}, - [1384] = {.lex_state = 8, .external_lex_state = 3}, - [1385] = {.lex_state = 4, .external_lex_state = 3}, - [1386] = {.lex_state = 4, .external_lex_state = 3}, + [1384] = {.lex_state = 4, .external_lex_state = 3}, + [1385] = {.lex_state = 18, .external_lex_state = 3}, + [1386] = {.lex_state = 18, .external_lex_state = 3}, [1387] = {.lex_state = 4, .external_lex_state = 3}, - [1388] = {.lex_state = 18, .external_lex_state = 3}, - [1389] = {.lex_state = 8, .external_lex_state = 3}, - [1390] = {.lex_state = 18, .external_lex_state = 3}, + [1388] = {.lex_state = 4, .external_lex_state = 3}, + [1389] = {.lex_state = 4, .external_lex_state = 3}, + [1390] = {.lex_state = 4, .external_lex_state = 3}, [1391] = {.lex_state = 18, .external_lex_state = 3}, [1392] = {.lex_state = 4, .external_lex_state = 3}, - [1393] = {.lex_state = 18, .external_lex_state = 3}, + [1393] = {.lex_state = 4, .external_lex_state = 3}, [1394] = {.lex_state = 4, .external_lex_state = 3}, - [1395] = {.lex_state = 4, .external_lex_state = 3}, + [1395] = {.lex_state = 18, .external_lex_state = 3}, [1396] = {.lex_state = 4, .external_lex_state = 3}, [1397] = {.lex_state = 4, .external_lex_state = 3}, - [1398] = {.lex_state = 18, .external_lex_state = 3}, - [1399] = {.lex_state = 18, .external_lex_state = 3}, + [1398] = {.lex_state = 4, .external_lex_state = 3}, + [1399] = {.lex_state = 8, .external_lex_state = 3}, [1400] = {.lex_state = 18, .external_lex_state = 3}, - [1401] = {.lex_state = 18, .external_lex_state = 3}, - [1402] = {.lex_state = 4, .external_lex_state = 3}, + [1401] = {.lex_state = 4, .external_lex_state = 3}, + [1402] = {.lex_state = 18, .external_lex_state = 3}, [1403] = {.lex_state = 18, .external_lex_state = 3}, - [1404] = {.lex_state = 18, .external_lex_state = 3}, + [1404] = {.lex_state = 4, .external_lex_state = 3}, [1405] = {.lex_state = 18, .external_lex_state = 3}, - [1406] = {.lex_state = 18, .external_lex_state = 3}, - [1407] = {.lex_state = 18, .external_lex_state = 3}, - [1408] = {.lex_state = 18, .external_lex_state = 3}, + [1406] = {.lex_state = 4, .external_lex_state = 3}, + [1407] = {.lex_state = 8, .external_lex_state = 3}, + [1408] = {.lex_state = 4, .external_lex_state = 3}, [1409] = {.lex_state = 18, .external_lex_state = 3}, [1410] = {.lex_state = 18, .external_lex_state = 3}, [1411] = {.lex_state = 18, .external_lex_state = 3}, [1412] = {.lex_state = 18, .external_lex_state = 3}, - [1413] = {.lex_state = 18, .external_lex_state = 3}, + [1413] = {.lex_state = 4, .external_lex_state = 3}, [1414] = {.lex_state = 18, .external_lex_state = 3}, [1415] = {.lex_state = 18, .external_lex_state = 3}, - [1416] = {.lex_state = 18, .external_lex_state = 3}, + [1416] = {.lex_state = 8, .external_lex_state = 3}, [1417] = {.lex_state = 18, .external_lex_state = 3}, - [1418] = {.lex_state = 4, .external_lex_state = 3}, - [1419] = {.lex_state = 18, .external_lex_state = 3}, - [1420] = {.lex_state = 18, .external_lex_state = 3}, - [1421] = {.lex_state = 18, .external_lex_state = 3}, + [1418] = {.lex_state = 18, .external_lex_state = 3}, + [1419] = {.lex_state = 4, .external_lex_state = 3}, + [1420] = {.lex_state = 4, .external_lex_state = 3}, + [1421] = {.lex_state = 4, .external_lex_state = 3}, [1422] = {.lex_state = 18, .external_lex_state = 3}, [1423] = {.lex_state = 18, .external_lex_state = 3}, [1424] = {.lex_state = 18, .external_lex_state = 3}, @@ -14789,144 +17462,144 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1433] = {.lex_state = 18, .external_lex_state = 3}, [1434] = {.lex_state = 18, .external_lex_state = 3}, [1435] = {.lex_state = 18, .external_lex_state = 3}, - [1436] = {.lex_state = 8, .external_lex_state = 3}, - [1437] = {.lex_state = 8, .external_lex_state = 3}, - [1438] = {.lex_state = 18, .external_lex_state = 3}, - [1439] = {.lex_state = 4, .external_lex_state = 3}, - [1440] = {.lex_state = 8, .external_lex_state = 3}, - [1441] = {.lex_state = 4, .external_lex_state = 3}, - [1442] = {.lex_state = 8, .external_lex_state = 3}, - [1443] = {.lex_state = 4, .external_lex_state = 3}, - [1444] = {.lex_state = 4, .external_lex_state = 3}, - [1445] = {.lex_state = 8, .external_lex_state = 3}, - [1446] = {.lex_state = 8, .external_lex_state = 3}, + [1436] = {.lex_state = 18, .external_lex_state = 3}, + [1437] = {.lex_state = 18, .external_lex_state = 3}, + [1438] = {.lex_state = 4, .external_lex_state = 3}, + [1439] = {.lex_state = 18, .external_lex_state = 3}, + [1440] = {.lex_state = 18, .external_lex_state = 3}, + [1441] = {.lex_state = 18, .external_lex_state = 3}, + [1442] = {.lex_state = 18, .external_lex_state = 3}, + [1443] = {.lex_state = 18, .external_lex_state = 3}, + [1444] = {.lex_state = 18, .external_lex_state = 3}, + [1445] = {.lex_state = 18, .external_lex_state = 3}, + [1446] = {.lex_state = 18, .external_lex_state = 3}, [1447] = {.lex_state = 8, .external_lex_state = 3}, - [1448] = {.lex_state = 8, .external_lex_state = 3}, - [1449] = {.lex_state = 8, .external_lex_state = 3}, - [1450] = {.lex_state = 8, .external_lex_state = 3}, - [1451] = {.lex_state = 18, .external_lex_state = 3}, + [1448] = {.lex_state = 18, .external_lex_state = 3}, + [1449] = {.lex_state = 18, .external_lex_state = 3}, + [1450] = {.lex_state = 4, .external_lex_state = 3}, + [1451] = {.lex_state = 4, .external_lex_state = 3}, [1452] = {.lex_state = 4, .external_lex_state = 3}, - [1453] = {.lex_state = 8, .external_lex_state = 3}, - [1454] = {.lex_state = 4, .external_lex_state = 3}, + [1453] = {.lex_state = 4, .external_lex_state = 3}, + [1454] = {.lex_state = 18, .external_lex_state = 3}, [1455] = {.lex_state = 4, .external_lex_state = 3}, [1456] = {.lex_state = 4, .external_lex_state = 3}, - [1457] = {.lex_state = 8, .external_lex_state = 3}, - [1458] = {.lex_state = 18, .external_lex_state = 3}, - [1459] = {.lex_state = 13, .external_lex_state = 3}, + [1457] = {.lex_state = 4, .external_lex_state = 3}, + [1458] = {.lex_state = 4, .external_lex_state = 3}, + [1459] = {.lex_state = 4, .external_lex_state = 3}, [1460] = {.lex_state = 18, .external_lex_state = 3}, - [1461] = {.lex_state = 8, .external_lex_state = 3}, - [1462] = {.lex_state = 8, .external_lex_state = 3}, + [1461] = {.lex_state = 18, .external_lex_state = 3}, + [1462] = {.lex_state = 18, .external_lex_state = 3}, [1463] = {.lex_state = 18, .external_lex_state = 3}, [1464] = {.lex_state = 18, .external_lex_state = 3}, - [1465] = {.lex_state = 18, .external_lex_state = 3}, - [1466] = {.lex_state = 18, .external_lex_state = 3}, - [1467] = {.lex_state = 18, .external_lex_state = 3}, - [1468] = {.lex_state = 18, .external_lex_state = 3}, - [1469] = {.lex_state = 4, .external_lex_state = 3}, + [1465] = {.lex_state = 8, .external_lex_state = 3}, + [1466] = {.lex_state = 8, .external_lex_state = 3}, + [1467] = {.lex_state = 8, .external_lex_state = 3}, + [1468] = {.lex_state = 8, .external_lex_state = 3}, + [1469] = {.lex_state = 18, .external_lex_state = 3}, [1470] = {.lex_state = 18, .external_lex_state = 3}, [1471] = {.lex_state = 8, .external_lex_state = 3}, [1472] = {.lex_state = 18, .external_lex_state = 3}, [1473] = {.lex_state = 18, .external_lex_state = 3}, - [1474] = {.lex_state = 8, .external_lex_state = 3}, - [1475] = {.lex_state = 13, .external_lex_state = 3}, - [1476] = {.lex_state = 8, .external_lex_state = 3}, + [1474] = {.lex_state = 18, .external_lex_state = 3}, + [1475] = {.lex_state = 18, .external_lex_state = 3}, + [1476] = {.lex_state = 18, .external_lex_state = 3}, [1477] = {.lex_state = 18, .external_lex_state = 3}, - [1478] = {.lex_state = 8, .external_lex_state = 3}, - [1479] = {.lex_state = 4, .external_lex_state = 3}, + [1478] = {.lex_state = 18, .external_lex_state = 3}, + [1479] = {.lex_state = 18, .external_lex_state = 3}, [1480] = {.lex_state = 18, .external_lex_state = 3}, [1481] = {.lex_state = 18, .external_lex_state = 3}, [1482] = {.lex_state = 18, .external_lex_state = 3}, - [1483] = {.lex_state = 18, .external_lex_state = 3}, - [1484] = {.lex_state = 8, .external_lex_state = 3}, - [1485] = {.lex_state = 18, .external_lex_state = 3}, - [1486] = {.lex_state = 18, .external_lex_state = 3}, - [1487] = {.lex_state = 13, .external_lex_state = 3}, - [1488] = {.lex_state = 18, .external_lex_state = 3}, + [1483] = {.lex_state = 8, .external_lex_state = 3}, + [1484] = {.lex_state = 18, .external_lex_state = 3}, + [1485] = {.lex_state = 8, .external_lex_state = 3}, + [1486] = {.lex_state = 8, .external_lex_state = 3}, + [1487] = {.lex_state = 18, .external_lex_state = 3}, + [1488] = {.lex_state = 8, .external_lex_state = 3}, [1489] = {.lex_state = 18, .external_lex_state = 3}, - [1490] = {.lex_state = 13, .external_lex_state = 3}, + [1490] = {.lex_state = 8, .external_lex_state = 3}, [1491] = {.lex_state = 18, .external_lex_state = 3}, - [1492] = {.lex_state = 18, .external_lex_state = 3}, + [1492] = {.lex_state = 8, .external_lex_state = 3}, [1493] = {.lex_state = 18, .external_lex_state = 3}, [1494] = {.lex_state = 18, .external_lex_state = 3}, [1495] = {.lex_state = 18, .external_lex_state = 3}, [1496] = {.lex_state = 18, .external_lex_state = 3}, - [1497] = {.lex_state = 18, .external_lex_state = 3}, - [1498] = {.lex_state = 8, .external_lex_state = 3}, + [1497] = {.lex_state = 8, .external_lex_state = 3}, + [1498] = {.lex_state = 18, .external_lex_state = 3}, [1499] = {.lex_state = 18, .external_lex_state = 3}, [1500] = {.lex_state = 18, .external_lex_state = 3}, [1501] = {.lex_state = 18, .external_lex_state = 3}, [1502] = {.lex_state = 18, .external_lex_state = 3}, - [1503] = {.lex_state = 4, .external_lex_state = 3}, - [1504] = {.lex_state = 15, .external_lex_state = 3}, - [1505] = {.lex_state = 18, .external_lex_state = 3}, - [1506] = {.lex_state = 4, .external_lex_state = 3}, - [1507] = {.lex_state = 4, .external_lex_state = 3}, - [1508] = {.lex_state = 4, .external_lex_state = 3}, + [1503] = {.lex_state = 18, .external_lex_state = 3}, + [1504] = {.lex_state = 18, .external_lex_state = 3}, + [1505] = {.lex_state = 8, .external_lex_state = 3}, + [1506] = {.lex_state = 13, .external_lex_state = 3}, + [1507] = {.lex_state = 13, .external_lex_state = 3}, + [1508] = {.lex_state = 8, .external_lex_state = 3}, [1509] = {.lex_state = 8, .external_lex_state = 3}, - [1510] = {.lex_state = 4, .external_lex_state = 3}, - [1511] = {.lex_state = 4, .external_lex_state = 3}, + [1510] = {.lex_state = 8, .external_lex_state = 3}, + [1511] = {.lex_state = 8, .external_lex_state = 3}, [1512] = {.lex_state = 4, .external_lex_state = 3}, - [1513] = {.lex_state = 4, .external_lex_state = 3}, - [1514] = {.lex_state = 4, .external_lex_state = 3}, - [1515] = {.lex_state = 15, .external_lex_state = 3}, - [1516] = {.lex_state = 18, .external_lex_state = 3}, - [1517] = {.lex_state = 18, .external_lex_state = 3}, - [1518] = {.lex_state = 4, .external_lex_state = 3}, + [1513] = {.lex_state = 8, .external_lex_state = 3}, + [1514] = {.lex_state = 13, .external_lex_state = 3}, + [1515] = {.lex_state = 8, .external_lex_state = 3}, + [1516] = {.lex_state = 4, .external_lex_state = 3}, + [1517] = {.lex_state = 13, .external_lex_state = 3}, + [1518] = {.lex_state = 8, .external_lex_state = 3}, [1519] = {.lex_state = 4, .external_lex_state = 3}, [1520] = {.lex_state = 4, .external_lex_state = 3}, [1521] = {.lex_state = 4, .external_lex_state = 3}, - [1522] = {.lex_state = 18, .external_lex_state = 3}, - [1523] = {.lex_state = 4, .external_lex_state = 3}, + [1522] = {.lex_state = 4, .external_lex_state = 3}, + [1523] = {.lex_state = 18, .external_lex_state = 3}, [1524] = {.lex_state = 4, .external_lex_state = 3}, [1525] = {.lex_state = 4, .external_lex_state = 3}, - [1526] = {.lex_state = 4, .external_lex_state = 3}, - [1527] = {.lex_state = 4, .external_lex_state = 3}, + [1526] = {.lex_state = 15, .external_lex_state = 3}, + [1527] = {.lex_state = 8, .external_lex_state = 3}, [1528] = {.lex_state = 4, .external_lex_state = 3}, [1529] = {.lex_state = 4, .external_lex_state = 3}, [1530] = {.lex_state = 4, .external_lex_state = 3}, - [1531] = {.lex_state = 15, .external_lex_state = 3}, + [1531] = {.lex_state = 4, .external_lex_state = 3}, [1532] = {.lex_state = 4, .external_lex_state = 3}, [1533] = {.lex_state = 4, .external_lex_state = 3}, - [1534] = {.lex_state = 4, .external_lex_state = 3}, + [1534] = {.lex_state = 18, .external_lex_state = 3}, [1535] = {.lex_state = 18, .external_lex_state = 3}, - [1536] = {.lex_state = 4, .external_lex_state = 3}, + [1536] = {.lex_state = 18, .external_lex_state = 3}, [1537] = {.lex_state = 4, .external_lex_state = 3}, [1538] = {.lex_state = 4, .external_lex_state = 3}, [1539] = {.lex_state = 18, .external_lex_state = 3}, [1540] = {.lex_state = 4, .external_lex_state = 3}, - [1541] = {.lex_state = 4, .external_lex_state = 3}, + [1541] = {.lex_state = 18, .external_lex_state = 3}, [1542] = {.lex_state = 4, .external_lex_state = 3}, [1543] = {.lex_state = 4, .external_lex_state = 3}, [1544] = {.lex_state = 4, .external_lex_state = 3}, [1545] = {.lex_state = 18, .external_lex_state = 3}, [1546] = {.lex_state = 4, .external_lex_state = 3}, - [1547] = {.lex_state = 4, .external_lex_state = 3}, + [1547] = {.lex_state = 15, .external_lex_state = 3}, [1548] = {.lex_state = 4, .external_lex_state = 3}, [1549] = {.lex_state = 18, .external_lex_state = 3}, [1550] = {.lex_state = 4, .external_lex_state = 3}, - [1551] = {.lex_state = 18, .external_lex_state = 3}, + [1551] = {.lex_state = 4, .external_lex_state = 3}, [1552] = {.lex_state = 4, .external_lex_state = 3}, [1553] = {.lex_state = 4, .external_lex_state = 3}, [1554] = {.lex_state = 4, .external_lex_state = 3}, [1555] = {.lex_state = 4, .external_lex_state = 3}, [1556] = {.lex_state = 4, .external_lex_state = 3}, - [1557] = {.lex_state = 4, .external_lex_state = 3}, + [1557] = {.lex_state = 18, .external_lex_state = 3}, [1558] = {.lex_state = 4, .external_lex_state = 3}, [1559] = {.lex_state = 4, .external_lex_state = 3}, - [1560] = {.lex_state = 15, .external_lex_state = 3}, - [1561] = {.lex_state = 15, .external_lex_state = 3}, + [1560] = {.lex_state = 4, .external_lex_state = 3}, + [1561] = {.lex_state = 4, .external_lex_state = 3}, [1562] = {.lex_state = 4, .external_lex_state = 3}, - [1563] = {.lex_state = 15, .external_lex_state = 3}, + [1563] = {.lex_state = 4, .external_lex_state = 3}, [1564] = {.lex_state = 4, .external_lex_state = 3}, - [1565] = {.lex_state = 15, .external_lex_state = 3}, + [1565] = {.lex_state = 4, .external_lex_state = 3}, [1566] = {.lex_state = 4, .external_lex_state = 3}, [1567] = {.lex_state = 4, .external_lex_state = 3}, - [1568] = {.lex_state = 0, .external_lex_state = 3}, + [1568] = {.lex_state = 4, .external_lex_state = 3}, [1569] = {.lex_state = 4, .external_lex_state = 3}, [1570] = {.lex_state = 4, .external_lex_state = 3}, - [1571] = {.lex_state = 4, .external_lex_state = 3}, - [1572] = {.lex_state = 4, .external_lex_state = 3}, - [1573] = {.lex_state = 15, .external_lex_state = 3}, + [1571] = {.lex_state = 15, .external_lex_state = 3}, + [1572] = {.lex_state = 13, .external_lex_state = 3}, + [1573] = {.lex_state = 4, .external_lex_state = 3}, [1574] = {.lex_state = 4, .external_lex_state = 3}, [1575] = {.lex_state = 4, .external_lex_state = 3}, [1576] = {.lex_state = 15, .external_lex_state = 3}, @@ -14935,149 +17608,149 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1579] = {.lex_state = 4, .external_lex_state = 3}, [1580] = {.lex_state = 4, .external_lex_state = 3}, [1581] = {.lex_state = 4, .external_lex_state = 3}, - [1582] = {.lex_state = 13, .external_lex_state = 3}, - [1583] = {.lex_state = 15, .external_lex_state = 3}, + [1582] = {.lex_state = 4, .external_lex_state = 3}, + [1583] = {.lex_state = 4, .external_lex_state = 3}, [1584] = {.lex_state = 4, .external_lex_state = 3}, [1585] = {.lex_state = 4, .external_lex_state = 3}, [1586] = {.lex_state = 4, .external_lex_state = 3}, [1587] = {.lex_state = 4, .external_lex_state = 3}, [1588] = {.lex_state = 4, .external_lex_state = 3}, [1589] = {.lex_state = 4, .external_lex_state = 3}, - [1590] = {.lex_state = 4, .external_lex_state = 3}, - [1591] = {.lex_state = 4, .external_lex_state = 3}, - [1592] = {.lex_state = 4, .external_lex_state = 3}, + [1590] = {.lex_state = 15, .external_lex_state = 3}, + [1591] = {.lex_state = 15, .external_lex_state = 3}, + [1592] = {.lex_state = 15, .external_lex_state = 3}, [1593] = {.lex_state = 4, .external_lex_state = 3}, [1594] = {.lex_state = 4, .external_lex_state = 3}, [1595] = {.lex_state = 15, .external_lex_state = 3}, - [1596] = {.lex_state = 0, .external_lex_state = 3}, - [1597] = {.lex_state = 0, .external_lex_state = 3}, + [1596] = {.lex_state = 4, .external_lex_state = 3}, + [1597] = {.lex_state = 4, .external_lex_state = 3}, [1598] = {.lex_state = 4, .external_lex_state = 3}, [1599] = {.lex_state = 4, .external_lex_state = 3}, - [1600] = {.lex_state = 0, .external_lex_state = 3}, - [1601] = {.lex_state = 0, .external_lex_state = 3}, + [1600] = {.lex_state = 4, .external_lex_state = 3}, + [1601] = {.lex_state = 4, .external_lex_state = 3}, [1602] = {.lex_state = 4, .external_lex_state = 3}, - [1603] = {.lex_state = 0, .external_lex_state = 3}, + [1603] = {.lex_state = 15, .external_lex_state = 3}, [1604] = {.lex_state = 4, .external_lex_state = 3}, [1605] = {.lex_state = 4, .external_lex_state = 3}, [1606] = {.lex_state = 0, .external_lex_state = 3}, - [1607] = {.lex_state = 4, .external_lex_state = 3}, - [1608] = {.lex_state = 0, .external_lex_state = 3}, - [1609] = {.lex_state = 0, .external_lex_state = 3}, + [1607] = {.lex_state = 15, .external_lex_state = 3}, + [1608] = {.lex_state = 15, .external_lex_state = 3}, + [1609] = {.lex_state = 4, .external_lex_state = 3}, [1610] = {.lex_state = 4, .external_lex_state = 3}, - [1611] = {.lex_state = 0, .external_lex_state = 3}, + [1611] = {.lex_state = 4, .external_lex_state = 3}, [1612] = {.lex_state = 4, .external_lex_state = 3}, - [1613] = {.lex_state = 0, .external_lex_state = 3}, + [1613] = {.lex_state = 4, .external_lex_state = 3}, [1614] = {.lex_state = 4, .external_lex_state = 3}, [1615] = {.lex_state = 4, .external_lex_state = 3}, - [1616] = {.lex_state = 15, .external_lex_state = 3}, + [1616] = {.lex_state = 4, .external_lex_state = 3}, [1617] = {.lex_state = 4, .external_lex_state = 3}, [1618] = {.lex_state = 0, .external_lex_state = 3}, [1619] = {.lex_state = 0, .external_lex_state = 3}, - [1620] = {.lex_state = 4, .external_lex_state = 3}, - [1621] = {.lex_state = 0, .external_lex_state = 3}, - [1622] = {.lex_state = 0, .external_lex_state = 3}, + [1620] = {.lex_state = 0, .external_lex_state = 3}, + [1621] = {.lex_state = 4, .external_lex_state = 3}, + [1622] = {.lex_state = 4, .external_lex_state = 3}, [1623] = {.lex_state = 0, .external_lex_state = 3}, - [1624] = {.lex_state = 4, .external_lex_state = 3}, + [1624] = {.lex_state = 0, .external_lex_state = 3}, [1625] = {.lex_state = 4, .external_lex_state = 3}, [1626] = {.lex_state = 0, .external_lex_state = 3}, - [1627] = {.lex_state = 4, .external_lex_state = 3}, - [1628] = {.lex_state = 15, .external_lex_state = 3}, - [1629] = {.lex_state = 4, .external_lex_state = 3}, - [1630] = {.lex_state = 4, .external_lex_state = 3}, - [1631] = {.lex_state = 0, .external_lex_state = 3}, - [1632] = {.lex_state = 15, .external_lex_state = 3}, + [1627] = {.lex_state = 0, .external_lex_state = 3}, + [1628] = {.lex_state = 0, .external_lex_state = 3}, + [1629] = {.lex_state = 0, .external_lex_state = 3}, + [1630] = {.lex_state = 15, .external_lex_state = 3}, + [1631] = {.lex_state = 4, .external_lex_state = 3}, + [1632] = {.lex_state = 4, .external_lex_state = 3}, [1633] = {.lex_state = 0, .external_lex_state = 3}, - [1634] = {.lex_state = 15, .external_lex_state = 3}, - [1635] = {.lex_state = 4, .external_lex_state = 3}, + [1634] = {.lex_state = 0, .external_lex_state = 3}, + [1635] = {.lex_state = 0, .external_lex_state = 3}, [1636] = {.lex_state = 4, .external_lex_state = 3}, [1637] = {.lex_state = 0, .external_lex_state = 3}, - [1638] = {.lex_state = 4, .external_lex_state = 3}, - [1639] = {.lex_state = 0, .external_lex_state = 3}, - [1640] = {.lex_state = 0, .external_lex_state = 3}, - [1641] = {.lex_state = 0, .external_lex_state = 3}, - [1642] = {.lex_state = 4, .external_lex_state = 3}, - [1643] = {.lex_state = 4, .external_lex_state = 3}, + [1638] = {.lex_state = 0, .external_lex_state = 3}, + [1639] = {.lex_state = 4, .external_lex_state = 3}, + [1640] = {.lex_state = 4, .external_lex_state = 3}, + [1641] = {.lex_state = 4, .external_lex_state = 3}, + [1642] = {.lex_state = 15, .external_lex_state = 3}, + [1643] = {.lex_state = 15, .external_lex_state = 3}, [1644] = {.lex_state = 4, .external_lex_state = 3}, [1645] = {.lex_state = 4, .external_lex_state = 3}, - [1646] = {.lex_state = 4, .external_lex_state = 3}, - [1647] = {.lex_state = 4, .external_lex_state = 3}, - [1648] = {.lex_state = 4, .external_lex_state = 3}, - [1649] = {.lex_state = 58, .external_lex_state = 3}, - [1650] = {.lex_state = 58, .external_lex_state = 3}, - [1651] = {.lex_state = 4, .external_lex_state = 3}, - [1652] = {.lex_state = 4, .external_lex_state = 3}, + [1646] = {.lex_state = 0, .external_lex_state = 3}, + [1647] = {.lex_state = 0, .external_lex_state = 3}, + [1648] = {.lex_state = 0, .external_lex_state = 3}, + [1649] = {.lex_state = 0, .external_lex_state = 3}, + [1650] = {.lex_state = 4, .external_lex_state = 3}, + [1651] = {.lex_state = 0, .external_lex_state = 3}, + [1652] = {.lex_state = 0, .external_lex_state = 3}, [1653] = {.lex_state = 0, .external_lex_state = 3}, - [1654] = {.lex_state = 18, .external_lex_state = 3}, - [1655] = {.lex_state = 18, .external_lex_state = 3}, - [1656] = {.lex_state = 18, .external_lex_state = 3}, - [1657] = {.lex_state = 18, .external_lex_state = 3}, - [1658] = {.lex_state = 18, .external_lex_state = 3}, - [1659] = {.lex_state = 4, .external_lex_state = 3}, + [1654] = {.lex_state = 15, .external_lex_state = 3}, + [1655] = {.lex_state = 4, .external_lex_state = 3}, + [1656] = {.lex_state = 0, .external_lex_state = 3}, + [1657] = {.lex_state = 4, .external_lex_state = 3}, + [1658] = {.lex_state = 4, .external_lex_state = 3}, + [1659] = {.lex_state = 18, .external_lex_state = 3}, [1660] = {.lex_state = 4, .external_lex_state = 3}, - [1661] = {.lex_state = 18, .external_lex_state = 3}, - [1662] = {.lex_state = 4, .external_lex_state = 3}, + [1661] = {.lex_state = 4, .external_lex_state = 3}, + [1662] = {.lex_state = 9, .external_lex_state = 3}, [1663] = {.lex_state = 4, .external_lex_state = 3}, - [1664] = {.lex_state = 9, .external_lex_state = 3}, - [1665] = {.lex_state = 0, .external_lex_state = 3}, + [1664] = {.lex_state = 4, .external_lex_state = 3}, + [1665] = {.lex_state = 4, .external_lex_state = 3}, [1666] = {.lex_state = 4, .external_lex_state = 3}, [1667] = {.lex_state = 4, .external_lex_state = 3}, [1668] = {.lex_state = 4, .external_lex_state = 3}, [1669] = {.lex_state = 4, .external_lex_state = 3}, [1670] = {.lex_state = 4, .external_lex_state = 3}, - [1671] = {.lex_state = 15, .external_lex_state = 3}, + [1671] = {.lex_state = 4, .external_lex_state = 3}, [1672] = {.lex_state = 4, .external_lex_state = 3}, [1673] = {.lex_state = 4, .external_lex_state = 3}, [1674] = {.lex_state = 4, .external_lex_state = 3}, [1675] = {.lex_state = 4, .external_lex_state = 3}, [1676] = {.lex_state = 4, .external_lex_state = 3}, - [1677] = {.lex_state = 4, .external_lex_state = 3}, + [1677] = {.lex_state = 18, .external_lex_state = 3}, [1678] = {.lex_state = 4, .external_lex_state = 3}, - [1679] = {.lex_state = 4, .external_lex_state = 3}, - [1680] = {.lex_state = 0, .external_lex_state = 3}, - [1681] = {.lex_state = 4, .external_lex_state = 3}, + [1679] = {.lex_state = 58, .external_lex_state = 3}, + [1680] = {.lex_state = 18, .external_lex_state = 3}, + [1681] = {.lex_state = 9, .external_lex_state = 3}, [1682] = {.lex_state = 4, .external_lex_state = 3}, [1683] = {.lex_state = 4, .external_lex_state = 3}, [1684] = {.lex_state = 4, .external_lex_state = 3}, [1685] = {.lex_state = 4, .external_lex_state = 3}, [1686] = {.lex_state = 4, .external_lex_state = 3}, [1687] = {.lex_state = 4, .external_lex_state = 3}, - [1688] = {.lex_state = 9, .external_lex_state = 3}, + [1688] = {.lex_state = 58, .external_lex_state = 3}, [1689] = {.lex_state = 4, .external_lex_state = 3}, [1690] = {.lex_state = 4, .external_lex_state = 3}, [1691] = {.lex_state = 4, .external_lex_state = 3}, [1692] = {.lex_state = 4, .external_lex_state = 3}, - [1693] = {.lex_state = 9, .external_lex_state = 3}, - [1694] = {.lex_state = 4, .external_lex_state = 3}, + [1693] = {.lex_state = 18, .external_lex_state = 3}, + [1694] = {.lex_state = 18, .external_lex_state = 3}, [1695] = {.lex_state = 4, .external_lex_state = 3}, [1696] = {.lex_state = 4, .external_lex_state = 3}, - [1697] = {.lex_state = 4, .external_lex_state = 3}, + [1697] = {.lex_state = 0, .external_lex_state = 3}, [1698] = {.lex_state = 4, .external_lex_state = 3}, [1699] = {.lex_state = 4, .external_lex_state = 3}, [1700] = {.lex_state = 13, .external_lex_state = 3}, [1701] = {.lex_state = 4, .external_lex_state = 3}, - [1702] = {.lex_state = 18, .external_lex_state = 3}, - [1703] = {.lex_state = 0, .external_lex_state = 3}, - [1704] = {.lex_state = 18, .external_lex_state = 3}, - [1705] = {.lex_state = 0, .external_lex_state = 3}, - [1706] = {.lex_state = 4, .external_lex_state = 3}, - [1707] = {.lex_state = 4, .external_lex_state = 3}, + [1702] = {.lex_state = 4, .external_lex_state = 3}, + [1703] = {.lex_state = 9, .external_lex_state = 3}, + [1704] = {.lex_state = 0, .external_lex_state = 3}, + [1705] = {.lex_state = 4, .external_lex_state = 3}, + [1706] = {.lex_state = 9, .external_lex_state = 3}, + [1707] = {.lex_state = 15, .external_lex_state = 3}, [1708] = {.lex_state = 0, .external_lex_state = 3}, - [1709] = {.lex_state = 18, .external_lex_state = 3}, + [1709] = {.lex_state = 4, .external_lex_state = 3}, [1710] = {.lex_state = 4, .external_lex_state = 3}, - [1711] = {.lex_state = 4, .external_lex_state = 3}, + [1711] = {.lex_state = 0, .external_lex_state = 3}, [1712] = {.lex_state = 4, .external_lex_state = 3}, - [1713] = {.lex_state = 4, .external_lex_state = 3}, - [1714] = {.lex_state = 9, .external_lex_state = 3}, + [1713] = {.lex_state = 0, .external_lex_state = 3}, + [1714] = {.lex_state = 4, .external_lex_state = 3}, [1715] = {.lex_state = 4, .external_lex_state = 3}, - [1716] = {.lex_state = 0, .external_lex_state = 3}, - [1717] = {.lex_state = 4, .external_lex_state = 3}, + [1716] = {.lex_state = 4, .external_lex_state = 3}, + [1717] = {.lex_state = 0, .external_lex_state = 3}, [1718] = {.lex_state = 4, .external_lex_state = 3}, - [1719] = {.lex_state = 4, .external_lex_state = 3}, + [1719] = {.lex_state = 13, .external_lex_state = 3}, [1720] = {.lex_state = 4, .external_lex_state = 3}, [1721] = {.lex_state = 4, .external_lex_state = 3}, [1722] = {.lex_state = 4, .external_lex_state = 3}, - [1723] = {.lex_state = 9, .external_lex_state = 3}, - [1724] = {.lex_state = 4, .external_lex_state = 3}, + [1723] = {.lex_state = 18, .external_lex_state = 3}, + [1724] = {.lex_state = 18, .external_lex_state = 3}, [1725] = {.lex_state = 4, .external_lex_state = 3}, [1726] = {.lex_state = 4, .external_lex_state = 3}, [1727] = {.lex_state = 4, .external_lex_state = 3}, @@ -15085,243 +17758,243 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1729] = {.lex_state = 4, .external_lex_state = 3}, [1730] = {.lex_state = 4, .external_lex_state = 3}, [1731] = {.lex_state = 4, .external_lex_state = 3}, - [1732] = {.lex_state = 18, .external_lex_state = 3}, - [1733] = {.lex_state = 4, .external_lex_state = 3}, - [1734] = {.lex_state = 4, .external_lex_state = 3}, + [1732] = {.lex_state = 4, .external_lex_state = 3}, + [1733] = {.lex_state = 18, .external_lex_state = 3}, + [1734] = {.lex_state = 9, .external_lex_state = 3}, [1735] = {.lex_state = 4, .external_lex_state = 3}, - [1736] = {.lex_state = 13, .external_lex_state = 3}, - [1737] = {.lex_state = 9, .external_lex_state = 3}, + [1736] = {.lex_state = 4, .external_lex_state = 3}, + [1737] = {.lex_state = 4, .external_lex_state = 3}, [1738] = {.lex_state = 4, .external_lex_state = 3}, - [1739] = {.lex_state = 9, .external_lex_state = 3}, + [1739] = {.lex_state = 18, .external_lex_state = 3}, [1740] = {.lex_state = 4, .external_lex_state = 3}, - [1741] = {.lex_state = 58, .external_lex_state = 3}, - [1742] = {.lex_state = 58, .external_lex_state = 3}, + [1741] = {.lex_state = 4, .external_lex_state = 3}, + [1742] = {.lex_state = 4, .external_lex_state = 3}, [1743] = {.lex_state = 4, .external_lex_state = 3}, - [1744] = {.lex_state = 18, .external_lex_state = 3}, + [1744] = {.lex_state = 4, .external_lex_state = 3}, [1745] = {.lex_state = 4, .external_lex_state = 3}, - [1746] = {.lex_state = 9, .external_lex_state = 3}, - [1747] = {.lex_state = 9, .external_lex_state = 3}, + [1746] = {.lex_state = 4, .external_lex_state = 3}, + [1747] = {.lex_state = 4, .external_lex_state = 3}, [1748] = {.lex_state = 18, .external_lex_state = 3}, - [1749] = {.lex_state = 18, .external_lex_state = 3}, - [1750] = {.lex_state = 4, .external_lex_state = 3}, - [1751] = {.lex_state = 18, .external_lex_state = 3}, - [1752] = {.lex_state = 4, .external_lex_state = 3}, - [1753] = {.lex_state = 0, .external_lex_state = 3}, - [1754] = {.lex_state = 4, .external_lex_state = 3}, - [1755] = {.lex_state = 18, .external_lex_state = 3}, + [1749] = {.lex_state = 4, .external_lex_state = 3}, + [1750] = {.lex_state = 0, .external_lex_state = 3}, + [1751] = {.lex_state = 4, .external_lex_state = 3}, + [1752] = {.lex_state = 9, .external_lex_state = 3}, + [1753] = {.lex_state = 4, .external_lex_state = 3}, + [1754] = {.lex_state = 9, .external_lex_state = 3}, + [1755] = {.lex_state = 0, .external_lex_state = 3}, [1756] = {.lex_state = 4, .external_lex_state = 3}, - [1757] = {.lex_state = 4, .external_lex_state = 3}, + [1757] = {.lex_state = 0, .external_lex_state = 3}, [1758] = {.lex_state = 0, .external_lex_state = 3}, - [1759] = {.lex_state = 4, .external_lex_state = 3}, - [1760] = {.lex_state = 4, .external_lex_state = 3}, - [1761] = {.lex_state = 0, .external_lex_state = 3}, - [1762] = {.lex_state = 0, .external_lex_state = 3}, + [1759] = {.lex_state = 18, .external_lex_state = 3}, + [1760] = {.lex_state = 18, .external_lex_state = 3}, + [1761] = {.lex_state = 18, .external_lex_state = 3}, + [1762] = {.lex_state = 58, .external_lex_state = 3}, [1763] = {.lex_state = 0, .external_lex_state = 3}, - [1764] = {.lex_state = 4, .external_lex_state = 3}, + [1764] = {.lex_state = 18, .external_lex_state = 3}, [1765] = {.lex_state = 4, .external_lex_state = 3}, - [1766] = {.lex_state = 4, .external_lex_state = 3}, - [1767] = {.lex_state = 18, .external_lex_state = 3}, - [1768] = {.lex_state = 0, .external_lex_state = 3}, - [1769] = {.lex_state = 4, .external_lex_state = 3}, + [1766] = {.lex_state = 9, .external_lex_state = 3}, + [1767] = {.lex_state = 9, .external_lex_state = 3}, + [1768] = {.lex_state = 18, .external_lex_state = 3}, + [1769] = {.lex_state = 18, .external_lex_state = 3}, [1770] = {.lex_state = 4, .external_lex_state = 3}, - [1771] = {.lex_state = 18, .external_lex_state = 3}, - [1772] = {.lex_state = 18, .external_lex_state = 3}, - [1773] = {.lex_state = 18, .external_lex_state = 3}, + [1771] = {.lex_state = 9, .external_lex_state = 3}, + [1772] = {.lex_state = 0, .external_lex_state = 3}, + [1773] = {.lex_state = 4, .external_lex_state = 3}, [1774] = {.lex_state = 4, .external_lex_state = 3}, - [1775] = {.lex_state = 58, .external_lex_state = 3}, + [1775] = {.lex_state = 4, .external_lex_state = 3}, [1776] = {.lex_state = 4, .external_lex_state = 3}, - [1777] = {.lex_state = 9, .external_lex_state = 3}, - [1778] = {.lex_state = 9, .external_lex_state = 3}, - [1779] = {.lex_state = 18, .external_lex_state = 3}, - [1780] = {.lex_state = 0, .external_lex_state = 3}, + [1777] = {.lex_state = 4, .external_lex_state = 3}, + [1778] = {.lex_state = 4, .external_lex_state = 3}, + [1779] = {.lex_state = 4, .external_lex_state = 3}, + [1780] = {.lex_state = 4, .external_lex_state = 3}, [1781] = {.lex_state = 4, .external_lex_state = 3}, [1782] = {.lex_state = 18, .external_lex_state = 3}, [1783] = {.lex_state = 4, .external_lex_state = 3}, [1784] = {.lex_state = 4, .external_lex_state = 3}, - [1785] = {.lex_state = 18, .external_lex_state = 3}, - [1786] = {.lex_state = 4, .external_lex_state = 3}, + [1785] = {.lex_state = 4, .external_lex_state = 3}, + [1786] = {.lex_state = 18, .external_lex_state = 3}, [1787] = {.lex_state = 4, .external_lex_state = 3}, - [1788] = {.lex_state = 0, .external_lex_state = 3}, + [1788] = {.lex_state = 18, .external_lex_state = 3}, [1789] = {.lex_state = 4, .external_lex_state = 3}, - [1790] = {.lex_state = 4, .external_lex_state = 3}, + [1790] = {.lex_state = 18, .external_lex_state = 3}, [1791] = {.lex_state = 9, .external_lex_state = 3}, - [1792] = {.lex_state = 18, .external_lex_state = 3}, - [1793] = {.lex_state = 4, .external_lex_state = 3}, - [1794] = {.lex_state = 4, .external_lex_state = 3}, - [1795] = {.lex_state = 19, .external_lex_state = 3}, - [1796] = {.lex_state = 4, .external_lex_state = 3}, - [1797] = {.lex_state = 0, .external_lex_state = 3}, - [1798] = {.lex_state = 4, .external_lex_state = 4}, + [1792] = {.lex_state = 4, .external_lex_state = 3}, + [1793] = {.lex_state = 9, .external_lex_state = 3}, + [1794] = {.lex_state = 18, .external_lex_state = 3}, + [1795] = {.lex_state = 0, .external_lex_state = 3}, + [1796] = {.lex_state = 18, .external_lex_state = 3}, + [1797] = {.lex_state = 18, .external_lex_state = 3}, + [1798] = {.lex_state = 0, .external_lex_state = 3}, [1799] = {.lex_state = 4, .external_lex_state = 3}, - [1800] = {.lex_state = 58, .external_lex_state = 3}, - [1801] = {.lex_state = 58, .external_lex_state = 3}, - [1802] = {.lex_state = 58, .external_lex_state = 3}, - [1803] = {.lex_state = 58, .external_lex_state = 3}, - [1804] = {.lex_state = 58, .external_lex_state = 3}, - [1805] = {.lex_state = 58, .external_lex_state = 3}, + [1800] = {.lex_state = 18, .external_lex_state = 3}, + [1801] = {.lex_state = 4, .external_lex_state = 3}, + [1802] = {.lex_state = 4, .external_lex_state = 3}, + [1803] = {.lex_state = 4, .external_lex_state = 3}, + [1804] = {.lex_state = 18, .external_lex_state = 3}, + [1805] = {.lex_state = 0, .external_lex_state = 3}, [1806] = {.lex_state = 58, .external_lex_state = 3}, - [1807] = {.lex_state = 58, .external_lex_state = 3}, - [1808] = {.lex_state = 58, .external_lex_state = 3}, + [1807] = {.lex_state = 4, .external_lex_state = 3}, + [1808] = {.lex_state = 18, .external_lex_state = 3}, [1809] = {.lex_state = 4, .external_lex_state = 3}, - [1810] = {.lex_state = 18, .external_lex_state = 3}, + [1810] = {.lex_state = 58, .external_lex_state = 3}, [1811] = {.lex_state = 18, .external_lex_state = 3}, [1812] = {.lex_state = 4, .external_lex_state = 3}, - [1813] = {.lex_state = 4, .external_lex_state = 3}, + [1813] = {.lex_state = 58, .external_lex_state = 3}, [1814] = {.lex_state = 58, .external_lex_state = 3}, - [1815] = {.lex_state = 9, .external_lex_state = 3}, - [1816] = {.lex_state = 58, .external_lex_state = 3}, - [1817] = {.lex_state = 18, .external_lex_state = 3}, + [1815] = {.lex_state = 4, .external_lex_state = 3}, + [1816] = {.lex_state = 4, .external_lex_state = 3}, + [1817] = {.lex_state = 0, .external_lex_state = 3}, [1818] = {.lex_state = 4, .external_lex_state = 3}, [1819] = {.lex_state = 58, .external_lex_state = 3}, - [1820] = {.lex_state = 0, .external_lex_state = 3}, - [1821] = {.lex_state = 4, .external_lex_state = 4}, - [1822] = {.lex_state = 18, .external_lex_state = 3}, - [1823] = {.lex_state = 58, .external_lex_state = 3}, - [1824] = {.lex_state = 4, .external_lex_state = 3}, - [1825] = {.lex_state = 58, .external_lex_state = 3}, - [1826] = {.lex_state = 19, .external_lex_state = 3}, - [1827] = {.lex_state = 58, .external_lex_state = 3}, - [1828] = {.lex_state = 0, .external_lex_state = 3}, - [1829] = {.lex_state = 4, .external_lex_state = 4}, + [1820] = {.lex_state = 4, .external_lex_state = 4}, + [1821] = {.lex_state = 4, .external_lex_state = 3}, + [1822] = {.lex_state = 9, .external_lex_state = 3}, + [1823] = {.lex_state = 4, .external_lex_state = 3}, + [1824] = {.lex_state = 0, .external_lex_state = 3}, + [1825] = {.lex_state = 4, .external_lex_state = 4}, + [1826] = {.lex_state = 4, .external_lex_state = 3}, + [1827] = {.lex_state = 19, .external_lex_state = 3}, + [1828] = {.lex_state = 58, .external_lex_state = 3}, + [1829] = {.lex_state = 58, .external_lex_state = 3}, [1830] = {.lex_state = 4, .external_lex_state = 3}, - [1831] = {.lex_state = 18, .external_lex_state = 3}, - [1832] = {.lex_state = 0, .external_lex_state = 3}, - [1833] = {.lex_state = 58, .external_lex_state = 3}, - [1834] = {.lex_state = 9, .external_lex_state = 3}, + [1831] = {.lex_state = 58, .external_lex_state = 3}, + [1832] = {.lex_state = 4, .external_lex_state = 3}, + [1833] = {.lex_state = 4, .external_lex_state = 3}, + [1834] = {.lex_state = 58, .external_lex_state = 3}, [1835] = {.lex_state = 4, .external_lex_state = 3}, - [1836] = {.lex_state = 4, .external_lex_state = 3}, + [1836] = {.lex_state = 58, .external_lex_state = 3}, [1837] = {.lex_state = 4, .external_lex_state = 3}, [1838] = {.lex_state = 58, .external_lex_state = 3}, - [1839] = {.lex_state = 4, .external_lex_state = 3}, + [1839] = {.lex_state = 58, .external_lex_state = 3}, [1840] = {.lex_state = 0, .external_lex_state = 3}, [1841] = {.lex_state = 4, .external_lex_state = 3}, - [1842] = {.lex_state = 4, .external_lex_state = 3}, - [1843] = {.lex_state = 19, .external_lex_state = 3}, - [1844] = {.lex_state = 4, .external_lex_state = 3}, - [1845] = {.lex_state = 4, .external_lex_state = 3}, - [1846] = {.lex_state = 58, .external_lex_state = 3}, - [1847] = {.lex_state = 0, .external_lex_state = 3}, - [1848] = {.lex_state = 18, .external_lex_state = 3}, - [1849] = {.lex_state = 18, .external_lex_state = 3}, - [1850] = {.lex_state = 4, .external_lex_state = 3}, - [1851] = {.lex_state = 4, .external_lex_state = 4}, - [1852] = {.lex_state = 0, .external_lex_state = 3}, + [1842] = {.lex_state = 9, .external_lex_state = 3}, + [1843] = {.lex_state = 4, .external_lex_state = 3}, + [1844] = {.lex_state = 19, .external_lex_state = 3}, + [1845] = {.lex_state = 58, .external_lex_state = 3}, + [1846] = {.lex_state = 0, .external_lex_state = 3}, + [1847] = {.lex_state = 4, .external_lex_state = 3}, + [1848] = {.lex_state = 4, .external_lex_state = 3}, + [1849] = {.lex_state = 0, .external_lex_state = 3}, + [1850] = {.lex_state = 58, .external_lex_state = 3}, + [1851] = {.lex_state = 58, .external_lex_state = 3}, + [1852] = {.lex_state = 18, .external_lex_state = 3}, [1853] = {.lex_state = 58, .external_lex_state = 3}, - [1854] = {.lex_state = 0, .external_lex_state = 3}, - [1855] = {.lex_state = 4, .external_lex_state = 3}, + [1854] = {.lex_state = 4, .external_lex_state = 4}, + [1855] = {.lex_state = 58, .external_lex_state = 3}, [1856] = {.lex_state = 4, .external_lex_state = 3}, [1857] = {.lex_state = 0, .external_lex_state = 3}, - [1858] = {.lex_state = 4, .external_lex_state = 3}, - [1859] = {.lex_state = 58, .external_lex_state = 3}, - [1860] = {.lex_state = 0, .external_lex_state = 3}, - [1861] = {.lex_state = 18, .external_lex_state = 3}, - [1862] = {.lex_state = 19, .external_lex_state = 3}, - [1863] = {.lex_state = 58, .external_lex_state = 3}, - [1864] = {.lex_state = 4, .external_lex_state = 4}, - [1865] = {.lex_state = 0, .external_lex_state = 3}, - [1866] = {.lex_state = 4, .external_lex_state = 3}, + [1858] = {.lex_state = 58, .external_lex_state = 3}, + [1859] = {.lex_state = 18, .external_lex_state = 3}, + [1860] = {.lex_state = 4, .external_lex_state = 3}, + [1861] = {.lex_state = 58, .external_lex_state = 3}, + [1862] = {.lex_state = 18, .external_lex_state = 3}, + [1863] = {.lex_state = 4, .external_lex_state = 3}, + [1864] = {.lex_state = 58, .external_lex_state = 3}, + [1865] = {.lex_state = 58, .external_lex_state = 3}, + [1866] = {.lex_state = 0, .external_lex_state = 3}, [1867] = {.lex_state = 0, .external_lex_state = 3}, [1868] = {.lex_state = 0, .external_lex_state = 3}, - [1869] = {.lex_state = 58, .external_lex_state = 3}, - [1870] = {.lex_state = 0, .external_lex_state = 3}, - [1871] = {.lex_state = 0, .external_lex_state = 3}, - [1872] = {.lex_state = 4, .external_lex_state = 4}, - [1873] = {.lex_state = 18, .external_lex_state = 3}, - [1874] = {.lex_state = 58, .external_lex_state = 3}, - [1875] = {.lex_state = 58, .external_lex_state = 3}, + [1869] = {.lex_state = 0, .external_lex_state = 3}, + [1870] = {.lex_state = 4, .external_lex_state = 4}, + [1871] = {.lex_state = 4, .external_lex_state = 3}, + [1872] = {.lex_state = 58, .external_lex_state = 3}, + [1873] = {.lex_state = 4, .external_lex_state = 4}, + [1874] = {.lex_state = 18, .external_lex_state = 3}, + [1875] = {.lex_state = 4, .external_lex_state = 3}, [1876] = {.lex_state = 0, .external_lex_state = 3}, - [1877] = {.lex_state = 4, .external_lex_state = 4}, - [1878] = {.lex_state = 0, .external_lex_state = 3}, - [1879] = {.lex_state = 4, .external_lex_state = 3}, - [1880] = {.lex_state = 18, .external_lex_state = 3}, - [1881] = {.lex_state = 4, .external_lex_state = 4}, - [1882] = {.lex_state = 18, .external_lex_state = 3}, - [1883] = {.lex_state = 4, .external_lex_state = 3}, - [1884] = {.lex_state = 4, .external_lex_state = 3}, - [1885] = {.lex_state = 58, .external_lex_state = 3}, + [1877] = {.lex_state = 4, .external_lex_state = 3}, + [1878] = {.lex_state = 4, .external_lex_state = 3}, + [1879] = {.lex_state = 0, .external_lex_state = 3}, + [1880] = {.lex_state = 4, .external_lex_state = 3}, + [1881] = {.lex_state = 0, .external_lex_state = 3}, + [1882] = {.lex_state = 19, .external_lex_state = 3}, + [1883] = {.lex_state = 0, .external_lex_state = 3}, + [1884] = {.lex_state = 18, .external_lex_state = 3}, + [1885] = {.lex_state = 4, .external_lex_state = 3}, [1886] = {.lex_state = 58, .external_lex_state = 3}, [1887] = {.lex_state = 4, .external_lex_state = 4}, - [1888] = {.lex_state = 58, .external_lex_state = 3}, - [1889] = {.lex_state = 58, .external_lex_state = 3}, - [1890] = {.lex_state = 4, .external_lex_state = 3}, + [1888] = {.lex_state = 18, .external_lex_state = 3}, + [1889] = {.lex_state = 4, .external_lex_state = 3}, + [1890] = {.lex_state = 58, .external_lex_state = 3}, [1891] = {.lex_state = 0, .external_lex_state = 3}, - [1892] = {.lex_state = 4, .external_lex_state = 3}, - [1893] = {.lex_state = 4, .external_lex_state = 3}, + [1892] = {.lex_state = 4, .external_lex_state = 4}, + [1893] = {.lex_state = 4, .external_lex_state = 4}, [1894] = {.lex_state = 58, .external_lex_state = 3}, [1895] = {.lex_state = 0, .external_lex_state = 3}, - [1896] = {.lex_state = 3, .external_lex_state = 3}, - [1897] = {.lex_state = 58, .external_lex_state = 3}, - [1898] = {.lex_state = 58, .external_lex_state = 3}, - [1899] = {.lex_state = 4, .external_lex_state = 3}, - [1900] = {.lex_state = 3, .external_lex_state = 3}, - [1901] = {.lex_state = 3, .external_lex_state = 3}, - [1902] = {.lex_state = 58, .external_lex_state = 3}, - [1903] = {.lex_state = 58, .external_lex_state = 3}, - [1904] = {.lex_state = 0, .external_lex_state = 3}, - [1905] = {.lex_state = 0, .external_lex_state = 3}, - [1906] = {.lex_state = 0, .external_lex_state = 3}, - [1907] = {.lex_state = 0, .external_lex_state = 3}, - [1908] = {.lex_state = 4, .external_lex_state = 3}, + [1896] = {.lex_state = 19, .external_lex_state = 3}, + [1897] = {.lex_state = 0, .external_lex_state = 3}, + [1898] = {.lex_state = 4, .external_lex_state = 4}, + [1899] = {.lex_state = 58, .external_lex_state = 3}, + [1900] = {.lex_state = 4, .external_lex_state = 3}, + [1901] = {.lex_state = 4, .external_lex_state = 3}, + [1902] = {.lex_state = 0, .external_lex_state = 3}, + [1903] = {.lex_state = 18, .external_lex_state = 3}, + [1904] = {.lex_state = 4, .external_lex_state = 3}, + [1905] = {.lex_state = 4, .external_lex_state = 3}, + [1906] = {.lex_state = 4, .external_lex_state = 3}, + [1907] = {.lex_state = 4, .external_lex_state = 3}, + [1908] = {.lex_state = 58, .external_lex_state = 3}, [1909] = {.lex_state = 58, .external_lex_state = 3}, - [1910] = {.lex_state = 58, .external_lex_state = 3}, - [1911] = {.lex_state = 0, .external_lex_state = 3}, + [1910] = {.lex_state = 4, .external_lex_state = 3}, + [1911] = {.lex_state = 4, .external_lex_state = 3}, [1912] = {.lex_state = 58, .external_lex_state = 3}, - [1913] = {.lex_state = 4, .external_lex_state = 3}, - [1914] = {.lex_state = 3, .external_lex_state = 3}, - [1915] = {.lex_state = 4, .external_lex_state = 3}, - [1916] = {.lex_state = 0, .external_lex_state = 3}, - [1917] = {.lex_state = 58, .external_lex_state = 3}, - [1918] = {.lex_state = 9, .external_lex_state = 3}, + [1913] = {.lex_state = 58, .external_lex_state = 3}, + [1914] = {.lex_state = 58, .external_lex_state = 3}, + [1915] = {.lex_state = 0, .external_lex_state = 3}, + [1916] = {.lex_state = 58, .external_lex_state = 3}, + [1917] = {.lex_state = 0, .external_lex_state = 3}, + [1918] = {.lex_state = 4, .external_lex_state = 3}, [1919] = {.lex_state = 0, .external_lex_state = 3}, - [1920] = {.lex_state = 9, .external_lex_state = 3}, + [1920] = {.lex_state = 4, .external_lex_state = 3}, [1921] = {.lex_state = 58, .external_lex_state = 3}, - [1922] = {.lex_state = 0, .external_lex_state = 3}, + [1922] = {.lex_state = 4, .external_lex_state = 3}, [1923] = {.lex_state = 58, .external_lex_state = 3}, - [1924] = {.lex_state = 0, .external_lex_state = 3}, - [1925] = {.lex_state = 0, .external_lex_state = 3}, - [1926] = {.lex_state = 4, .external_lex_state = 3}, - [1927] = {.lex_state = 58, .external_lex_state = 3}, - [1928] = {.lex_state = 0, .external_lex_state = 3}, - [1929] = {.lex_state = 58, .external_lex_state = 3}, + [1924] = {.lex_state = 58, .external_lex_state = 3}, + [1925] = {.lex_state = 58, .external_lex_state = 3}, + [1926] = {.lex_state = 0, .external_lex_state = 3}, + [1927] = {.lex_state = 0, .external_lex_state = 3}, + [1928] = {.lex_state = 58, .external_lex_state = 3}, + [1929] = {.lex_state = 0, .external_lex_state = 3}, [1930] = {.lex_state = 58, .external_lex_state = 3}, - [1931] = {.lex_state = 3, .external_lex_state = 3}, - [1932] = {.lex_state = 0, .external_lex_state = 3}, - [1933] = {.lex_state = 4, .external_lex_state = 3}, - [1934] = {.lex_state = 3, .external_lex_state = 3}, + [1931] = {.lex_state = 0, .external_lex_state = 3}, + [1932] = {.lex_state = 58, .external_lex_state = 3}, + [1933] = {.lex_state = 0, .external_lex_state = 3}, + [1934] = {.lex_state = 58, .external_lex_state = 3}, [1935] = {.lex_state = 0, .external_lex_state = 3}, - [1936] = {.lex_state = 58, .external_lex_state = 3}, + [1936] = {.lex_state = 4, .external_lex_state = 3}, [1937] = {.lex_state = 0, .external_lex_state = 3}, - [1938] = {.lex_state = 58, .external_lex_state = 3}, + [1938] = {.lex_state = 0, .external_lex_state = 3}, [1939] = {.lex_state = 0, .external_lex_state = 3}, - [1940] = {.lex_state = 0, .external_lex_state = 3}, + [1940] = {.lex_state = 58, .external_lex_state = 3}, [1941] = {.lex_state = 58, .external_lex_state = 3}, - [1942] = {.lex_state = 3, .external_lex_state = 3}, - [1943] = {.lex_state = 0, .external_lex_state = 3}, + [1942] = {.lex_state = 58, .external_lex_state = 3}, + [1943] = {.lex_state = 58, .external_lex_state = 3}, [1944] = {.lex_state = 0, .external_lex_state = 3}, [1945] = {.lex_state = 0, .external_lex_state = 3}, - [1946] = {.lex_state = 0, .external_lex_state = 3}, - [1947] = {.lex_state = 0, .external_lex_state = 3}, + [1946] = {.lex_state = 4, .external_lex_state = 3}, + [1947] = {.lex_state = 4, .external_lex_state = 3}, [1948] = {.lex_state = 0, .external_lex_state = 3}, - [1949] = {.lex_state = 0, .external_lex_state = 3}, + [1949] = {.lex_state = 58, .external_lex_state = 3}, [1950] = {.lex_state = 0, .external_lex_state = 3}, - [1951] = {.lex_state = 58, .external_lex_state = 3}, + [1951] = {.lex_state = 0, .external_lex_state = 3}, [1952] = {.lex_state = 0, .external_lex_state = 3}, [1953] = {.lex_state = 0, .external_lex_state = 3}, [1954] = {.lex_state = 0, .external_lex_state = 3}, - [1955] = {.lex_state = 0, .external_lex_state = 3}, - [1956] = {.lex_state = 58, .external_lex_state = 3}, + [1955] = {.lex_state = 9, .external_lex_state = 3}, + [1956] = {.lex_state = 0, .external_lex_state = 3}, [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 0, .external_lex_state = 3}, - [1959] = {.lex_state = 0, .external_lex_state = 3}, + [1958] = {.lex_state = 58, .external_lex_state = 3}, + [1959] = {.lex_state = 4, .external_lex_state = 3}, [1960] = {.lex_state = 0, .external_lex_state = 3}, [1961] = {.lex_state = 0, .external_lex_state = 3}, [1962] = {.lex_state = 0, .external_lex_state = 3}, - [1963] = {.lex_state = 0, .external_lex_state = 3}, + [1963] = {.lex_state = 58, .external_lex_state = 3}, [1964] = {.lex_state = 4, .external_lex_state = 3}, [1965] = {.lex_state = 0, .external_lex_state = 3}, [1966] = {.lex_state = 4, .external_lex_state = 3}, [1967] = {.lex_state = 58, .external_lex_state = 3}, - [1968] = {.lex_state = 3, .external_lex_state = 3}, + [1968] = {.lex_state = 0, .external_lex_state = 3}, [1969] = {.lex_state = 0, .external_lex_state = 3}, [1970] = {.lex_state = 0, .external_lex_state = 3}, [1971] = {.lex_state = 0, .external_lex_state = 3}, @@ -15329,612 +18002,660 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1973] = {.lex_state = 0, .external_lex_state = 3}, [1974] = {.lex_state = 0, .external_lex_state = 3}, [1975] = {.lex_state = 0, .external_lex_state = 3}, - [1976] = {.lex_state = 4, .external_lex_state = 3}, - [1977] = {.lex_state = 0, .external_lex_state = 3}, + [1976] = {.lex_state = 0, .external_lex_state = 3}, + [1977] = {.lex_state = 4, .external_lex_state = 3}, [1978] = {.lex_state = 0, .external_lex_state = 3}, - [1979] = {.lex_state = 0, .external_lex_state = 3}, + [1979] = {.lex_state = 9, .external_lex_state = 3}, [1980] = {.lex_state = 0, .external_lex_state = 3}, [1981] = {.lex_state = 0, .external_lex_state = 3}, [1982] = {.lex_state = 0, .external_lex_state = 3}, - [1983] = {.lex_state = 0, .external_lex_state = 3}, - [1984] = {.lex_state = 3, .external_lex_state = 3}, - [1985] = {.lex_state = 0, .external_lex_state = 3}, - [1986] = {.lex_state = 4, .external_lex_state = 3}, + [1983] = {.lex_state = 58, .external_lex_state = 3}, + [1984] = {.lex_state = 0, .external_lex_state = 3}, + [1985] = {.lex_state = 58, .external_lex_state = 3}, + [1986] = {.lex_state = 58, .external_lex_state = 3}, [1987] = {.lex_state = 0, .external_lex_state = 3}, - [1988] = {.lex_state = 4, .external_lex_state = 3}, + [1988] = {.lex_state = 0, .external_lex_state = 3}, [1989] = {.lex_state = 0, .external_lex_state = 3}, [1990] = {.lex_state = 0, .external_lex_state = 3}, - [1991] = {.lex_state = 9, .external_lex_state = 3}, + [1991] = {.lex_state = 58, .external_lex_state = 3}, [1992] = {.lex_state = 0, .external_lex_state = 3}, [1993] = {.lex_state = 58, .external_lex_state = 3}, [1994] = {.lex_state = 0, .external_lex_state = 3}, - [1995] = {.lex_state = 4, .external_lex_state = 3}, - [1996] = {.lex_state = 0, .external_lex_state = 3}, - [1997] = {.lex_state = 0, .external_lex_state = 3}, - [1998] = {.lex_state = 58, .external_lex_state = 3}, - [1999] = {.lex_state = 58, .external_lex_state = 3}, + [1995] = {.lex_state = 58, .external_lex_state = 3}, + [1996] = {.lex_state = 58, .external_lex_state = 3}, + [1997] = {.lex_state = 58, .external_lex_state = 3}, + [1998] = {.lex_state = 4, .external_lex_state = 3}, + [1999] = {.lex_state = 4, .external_lex_state = 3}, [2000] = {.lex_state = 0, .external_lex_state = 3}, - [2001] = {.lex_state = 3, .external_lex_state = 3}, - [2002] = {.lex_state = 3, .external_lex_state = 3}, + [2001] = {.lex_state = 0, .external_lex_state = 3}, + [2002] = {.lex_state = 0, .external_lex_state = 3}, [2003] = {.lex_state = 0, .external_lex_state = 3}, - [2004] = {.lex_state = 4, .external_lex_state = 3}, - [2005] = {.lex_state = 3, .external_lex_state = 3}, + [2004] = {.lex_state = 58, .external_lex_state = 3}, + [2005] = {.lex_state = 58, .external_lex_state = 3}, [2006] = {.lex_state = 0, .external_lex_state = 3}, - [2007] = {.lex_state = 0, .external_lex_state = 3}, - [2008] = {.lex_state = 3, .external_lex_state = 3}, + [2007] = {.lex_state = 58, .external_lex_state = 3}, + [2008] = {.lex_state = 58, .external_lex_state = 3}, [2009] = {.lex_state = 0, .external_lex_state = 3}, [2010] = {.lex_state = 0, .external_lex_state = 3}, - [2011] = {.lex_state = 58, .external_lex_state = 3}, - [2012] = {.lex_state = 0, .external_lex_state = 3}, - [2013] = {.lex_state = 0, .external_lex_state = 3}, + [2011] = {.lex_state = 0, .external_lex_state = 3}, + [2012] = {.lex_state = 58, .external_lex_state = 3}, + [2013] = {.lex_state = 58, .external_lex_state = 3}, [2014] = {.lex_state = 0, .external_lex_state = 3}, - [2015] = {.lex_state = 58, .external_lex_state = 3}, - [2016] = {.lex_state = 0, .external_lex_state = 3}, - [2017] = {.lex_state = 58, .external_lex_state = 3}, + [2015] = {.lex_state = 0, .external_lex_state = 3}, + [2016] = {.lex_state = 58, .external_lex_state = 3}, + [2017] = {.lex_state = 4, .external_lex_state = 3}, [2018] = {.lex_state = 58, .external_lex_state = 3}, - [2019] = {.lex_state = 58, .external_lex_state = 3}, - [2020] = {.lex_state = 0, .external_lex_state = 3}, + [2019] = {.lex_state = 0, .external_lex_state = 3}, + [2020] = {.lex_state = 3, .external_lex_state = 3}, [2021] = {.lex_state = 4, .external_lex_state = 3}, - [2022] = {.lex_state = 3, .external_lex_state = 3}, - [2023] = {.lex_state = 0, .external_lex_state = 3}, - [2024] = {.lex_state = 0, .external_lex_state = 3}, - [2025] = {.lex_state = 58, .external_lex_state = 3}, - [2026] = {.lex_state = 58, .external_lex_state = 3}, + [2022] = {.lex_state = 0, .external_lex_state = 3}, + [2023] = {.lex_state = 3, .external_lex_state = 3}, + [2024] = {.lex_state = 58, .external_lex_state = 3}, + [2025] = {.lex_state = 4, .external_lex_state = 3}, + [2026] = {.lex_state = 9, .external_lex_state = 3}, [2027] = {.lex_state = 0, .external_lex_state = 3}, - [2028] = {.lex_state = 58, .external_lex_state = 3}, + [2028] = {.lex_state = 3, .external_lex_state = 3}, [2029] = {.lex_state = 58, .external_lex_state = 3}, - [2030] = {.lex_state = 58, .external_lex_state = 3}, - [2031] = {.lex_state = 0, .external_lex_state = 3}, - [2032] = {.lex_state = 58, .external_lex_state = 3}, - [2033] = {.lex_state = 4, .external_lex_state = 3}, - [2034] = {.lex_state = 58, .external_lex_state = 3}, - [2035] = {.lex_state = 0, .external_lex_state = 3}, + [2030] = {.lex_state = 3, .external_lex_state = 3}, + [2031] = {.lex_state = 58, .external_lex_state = 3}, + [2032] = {.lex_state = 0, .external_lex_state = 3}, + [2033] = {.lex_state = 0, .external_lex_state = 3}, + [2034] = {.lex_state = 3, .external_lex_state = 3}, + [2035] = {.lex_state = 3, .external_lex_state = 3}, [2036] = {.lex_state = 0, .external_lex_state = 3}, - [2037] = {.lex_state = 0, .external_lex_state = 3}, - [2038] = {.lex_state = 0, .external_lex_state = 3}, - [2039] = {.lex_state = 58, .external_lex_state = 3}, - [2040] = {.lex_state = 0, .external_lex_state = 3}, - [2041] = {.lex_state = 0, .external_lex_state = 3}, + [2037] = {.lex_state = 58, .external_lex_state = 3}, + [2038] = {.lex_state = 3, .external_lex_state = 3}, + [2039] = {.lex_state = 3, .external_lex_state = 3}, + [2040] = {.lex_state = 3, .external_lex_state = 3}, + [2041] = {.lex_state = 4, .external_lex_state = 3}, [2042] = {.lex_state = 0, .external_lex_state = 3}, [2043] = {.lex_state = 4, .external_lex_state = 3}, [2044] = {.lex_state = 0, .external_lex_state = 3}, [2045] = {.lex_state = 0, .external_lex_state = 3}, - [2046] = {.lex_state = 0, .external_lex_state = 3}, + [2046] = {.lex_state = 4, .external_lex_state = 3}, [2047] = {.lex_state = 0, .external_lex_state = 3}, [2048] = {.lex_state = 4, .external_lex_state = 3}, [2049] = {.lex_state = 3, .external_lex_state = 3}, - [2050] = {.lex_state = 0, .external_lex_state = 3}, + [2050] = {.lex_state = 4, .external_lex_state = 3}, [2051] = {.lex_state = 0, .external_lex_state = 3}, - [2052] = {.lex_state = 58, .external_lex_state = 3}, - [2053] = {.lex_state = 58, .external_lex_state = 3}, - [2054] = {.lex_state = 4, .external_lex_state = 3}, + [2052] = {.lex_state = 3, .external_lex_state = 3}, + [2053] = {.lex_state = 3, .external_lex_state = 3}, + [2054] = {.lex_state = 3, .external_lex_state = 3}, [2055] = {.lex_state = 0, .external_lex_state = 3}, [2056] = {.lex_state = 0, .external_lex_state = 3}, - [2057] = {.lex_state = 58, .external_lex_state = 3}, - [2058] = {.lex_state = 4, .external_lex_state = 3}, + [2057] = {.lex_state = 4, .external_lex_state = 3}, + [2058] = {.lex_state = 3, .external_lex_state = 3}, [2059] = {.lex_state = 0, .external_lex_state = 3}, - [2060] = {.lex_state = 0, .external_lex_state = 3}, - [2061] = {.lex_state = 58, .external_lex_state = 3}, - [2062] = {.lex_state = 0, .external_lex_state = 3}, - [2063] = {.lex_state = 4, .external_lex_state = 3}, - [2064] = {.lex_state = 0, .external_lex_state = 3}, + [2060] = {.lex_state = 58, .external_lex_state = 3}, + [2061] = {.lex_state = 0, .external_lex_state = 3}, + [2062] = {.lex_state = 58, .external_lex_state = 3}, + [2063] = {.lex_state = 0, .external_lex_state = 3}, + [2064] = {.lex_state = 58, .external_lex_state = 3}, [2065] = {.lex_state = 0, .external_lex_state = 3}, [2066] = {.lex_state = 0, .external_lex_state = 3}, [2067] = {.lex_state = 0, .external_lex_state = 3}, - [2068] = {.lex_state = 3, .external_lex_state = 3}, - [2069] = {.lex_state = 0, .external_lex_state = 3}, + [2068] = {.lex_state = 0, .external_lex_state = 3}, + [2069] = {.lex_state = 58, .external_lex_state = 3}, [2070] = {.lex_state = 0, .external_lex_state = 3}, [2071] = {.lex_state = 0, .external_lex_state = 3}, [2072] = {.lex_state = 0, .external_lex_state = 3}, [2073] = {.lex_state = 0, .external_lex_state = 3}, [2074] = {.lex_state = 0, .external_lex_state = 3}, - [2075] = {.lex_state = 58, .external_lex_state = 3}, - [2076] = {.lex_state = 58, .external_lex_state = 3}, - [2077] = {.lex_state = 58, .external_lex_state = 3}, + [2075] = {.lex_state = 4, .external_lex_state = 3}, + [2076] = {.lex_state = 0, .external_lex_state = 3}, + [2077] = {.lex_state = 0, .external_lex_state = 3}, [2078] = {.lex_state = 0, .external_lex_state = 3}, [2079] = {.lex_state = 0, .external_lex_state = 3}, [2080] = {.lex_state = 0, .external_lex_state = 3}, - [2081] = {.lex_state = 3, .external_lex_state = 3}, - [2082] = {.lex_state = 3, .external_lex_state = 3}, - [2083] = {.lex_state = 4, .external_lex_state = 3}, + [2081] = {.lex_state = 0, .external_lex_state = 3}, + [2082] = {.lex_state = 0, .external_lex_state = 3}, + [2083] = {.lex_state = 0, .external_lex_state = 3}, [2084] = {.lex_state = 0, .external_lex_state = 3}, - [2085] = {.lex_state = 58, .external_lex_state = 3}, - [2086] = {.lex_state = 18, .external_lex_state = 3}, + [2085] = {.lex_state = 0, .external_lex_state = 3}, + [2086] = {.lex_state = 3, .external_lex_state = 3}, [2087] = {.lex_state = 0, .external_lex_state = 3}, - [2088] = {.lex_state = 58, .external_lex_state = 3}, - [2089] = {.lex_state = 58, .external_lex_state = 3}, + [2088] = {.lex_state = 0, .external_lex_state = 3}, + [2089] = {.lex_state = 0, .external_lex_state = 3}, [2090] = {.lex_state = 0, .external_lex_state = 3}, - [2091] = {.lex_state = 58, .external_lex_state = 3}, + [2091] = {.lex_state = 3, .external_lex_state = 3}, [2092] = {.lex_state = 0, .external_lex_state = 3}, - [2093] = {.lex_state = 58, .external_lex_state = 3}, - [2094] = {.lex_state = 58, .external_lex_state = 3}, - [2095] = {.lex_state = 58, .external_lex_state = 3}, - [2096] = {.lex_state = 58, .external_lex_state = 3}, + [2093] = {.lex_state = 0, .external_lex_state = 3}, + [2094] = {.lex_state = 0, .external_lex_state = 3}, + [2095] = {.lex_state = 0, .external_lex_state = 3}, + [2096] = {.lex_state = 0, .external_lex_state = 3}, [2097] = {.lex_state = 0, .external_lex_state = 3}, - [2098] = {.lex_state = 0, .external_lex_state = 3}, + [2098] = {.lex_state = 3, .external_lex_state = 3}, [2099] = {.lex_state = 58, .external_lex_state = 3}, - [2100] = {.lex_state = 4, .external_lex_state = 3}, - [2101] = {.lex_state = 58, .external_lex_state = 3}, - [2102] = {.lex_state = 4, .external_lex_state = 3}, - [2103] = {.lex_state = 58, .external_lex_state = 3}, + [2100] = {.lex_state = 0, .external_lex_state = 3}, + [2101] = {.lex_state = 0, .external_lex_state = 3}, + [2102] = {.lex_state = 0, .external_lex_state = 3}, + [2103] = {.lex_state = 18, .external_lex_state = 3}, [2104] = {.lex_state = 0, .external_lex_state = 3}, [2105] = {.lex_state = 0, .external_lex_state = 3}, - [2106] = {.lex_state = 9, .external_lex_state = 3}, + [2106] = {.lex_state = 58, .external_lex_state = 3}, [2107] = {.lex_state = 58, .external_lex_state = 3}, - [2108] = {.lex_state = 0, .external_lex_state = 3}, - [2109] = {.lex_state = 58, .external_lex_state = 3}, - [2110] = {.lex_state = 0, .external_lex_state = 3}, - [2111] = {.lex_state = 4, .external_lex_state = 3}, + [2108] = {.lex_state = 58, .external_lex_state = 3}, + [2109] = {.lex_state = 0, .external_lex_state = 3}, + [2110] = {.lex_state = 9, .external_lex_state = 3}, + [2111] = {.lex_state = 0, .external_lex_state = 3}, [2112] = {.lex_state = 0, .external_lex_state = 3}, [2113] = {.lex_state = 0, .external_lex_state = 3}, - [2114] = {.lex_state = 58, .external_lex_state = 3}, - [2115] = {.lex_state = 58, .external_lex_state = 3}, + [2114] = {.lex_state = 0, .external_lex_state = 3}, + [2115] = {.lex_state = 0, .external_lex_state = 3}, [2116] = {.lex_state = 0, .external_lex_state = 3}, [2117] = {.lex_state = 0, .external_lex_state = 3}, - [2118] = {.lex_state = 4, .external_lex_state = 3}, + [2118] = {.lex_state = 58, .external_lex_state = 3}, [2119] = {.lex_state = 0, .external_lex_state = 3}, [2120] = {.lex_state = 4, .external_lex_state = 3}, [2121] = {.lex_state = 58, .external_lex_state = 3}, [2122] = {.lex_state = 0, .external_lex_state = 3}, - [2123] = {.lex_state = 58, .external_lex_state = 3}, - [2124] = {.lex_state = 0, .external_lex_state = 3}, + [2123] = {.lex_state = 4, .external_lex_state = 3}, + [2124] = {.lex_state = 58, .external_lex_state = 3}, [2125] = {.lex_state = 58, .external_lex_state = 3}, - [2126] = {.lex_state = 0, .external_lex_state = 3}, + [2126] = {.lex_state = 3, .external_lex_state = 3}, [2127] = {.lex_state = 0, .external_lex_state = 3}, [2128] = {.lex_state = 0, .external_lex_state = 3}, [2129] = {.lex_state = 0, .external_lex_state = 3}, - [2130] = {.lex_state = 0, .external_lex_state = 3}, - [2131] = {.lex_state = 0, .external_lex_state = 3}, - [2132] = {.lex_state = 9, .external_lex_state = 3}, + [2130] = {.lex_state = 58, .external_lex_state = 3}, + [2131] = {.lex_state = 58, .external_lex_state = 3}, + [2132] = {.lex_state = 0, .external_lex_state = 3}, [2133] = {.lex_state = 58, .external_lex_state = 3}, [2134] = {.lex_state = 0, .external_lex_state = 3}, - [2135] = {.lex_state = 4, .external_lex_state = 3}, + [2135] = {.lex_state = 0, .external_lex_state = 3}, [2136] = {.lex_state = 0, .external_lex_state = 3}, - [2137] = {.lex_state = 58, .external_lex_state = 3}, + [2137] = {.lex_state = 0, .external_lex_state = 3}, [2138] = {.lex_state = 0, .external_lex_state = 3}, - [2139] = {.lex_state = 0, .external_lex_state = 3}, - [2140] = {.lex_state = 0, .external_lex_state = 3}, - [2141] = {.lex_state = 0, .external_lex_state = 3}, - [2142] = {.lex_state = 58, .external_lex_state = 3}, - [2143] = {.lex_state = 3, .external_lex_state = 3}, + [2139] = {.lex_state = 58, .external_lex_state = 3}, + [2140] = {.lex_state = 58, .external_lex_state = 3}, + [2141] = {.lex_state = 58, .external_lex_state = 3}, + [2142] = {.lex_state = 0, .external_lex_state = 3}, + [2143] = {.lex_state = 58, .external_lex_state = 3}, [2144] = {.lex_state = 0, .external_lex_state = 3}, - [2145] = {.lex_state = 0, .external_lex_state = 3}, - [2146] = {.lex_state = 0, .external_lex_state = 3}, - [2147] = {.lex_state = 0, .external_lex_state = 3}, - [2148] = {.lex_state = 0, .external_lex_state = 3}, + [2145] = {.lex_state = 58, .external_lex_state = 3}, + [2146] = {.lex_state = 4, .external_lex_state = 3}, + [2147] = {.lex_state = 58, .external_lex_state = 3}, + [2148] = {.lex_state = 3, .external_lex_state = 3}, [2149] = {.lex_state = 0, .external_lex_state = 3}, - [2150] = {.lex_state = 0, .external_lex_state = 3}, - [2151] = {.lex_state = 3, .external_lex_state = 3}, + [2150] = {.lex_state = 58, .external_lex_state = 3}, + [2151] = {.lex_state = 4, .external_lex_state = 3}, [2152] = {.lex_state = 0, .external_lex_state = 3}, - [2153] = {.lex_state = 0, .external_lex_state = 3}, + [2153] = {.lex_state = 3, .external_lex_state = 3}, [2154] = {.lex_state = 0, .external_lex_state = 3}, [2155] = {.lex_state = 58, .external_lex_state = 3}, - [2156] = {.lex_state = 58, .external_lex_state = 3}, - [2157] = {.lex_state = 0, .external_lex_state = 3}, + [2156] = {.lex_state = 0, .external_lex_state = 3}, + [2157] = {.lex_state = 58, .external_lex_state = 3}, [2158] = {.lex_state = 0, .external_lex_state = 3}, - [2159] = {.lex_state = 4, .external_lex_state = 3}, - [2160] = {.lex_state = 4, .external_lex_state = 3}, - [2161] = {.lex_state = 0, .external_lex_state = 3}, + [2159] = {.lex_state = 0, .external_lex_state = 3}, + [2160] = {.lex_state = 0, .external_lex_state = 3}, + [2161] = {.lex_state = 9, .external_lex_state = 3}, [2162] = {.lex_state = 0, .external_lex_state = 3}, [2163] = {.lex_state = 0, .external_lex_state = 3}, - [2164] = {.lex_state = 4, .external_lex_state = 3}, + [2164] = {.lex_state = 0, .external_lex_state = 3}, [2165] = {.lex_state = 0, .external_lex_state = 3}, - [2166] = {.lex_state = 4, .external_lex_state = 3}, + [2166] = {.lex_state = 0, .external_lex_state = 3}, [2167] = {.lex_state = 0, .external_lex_state = 3}, - [2168] = {.lex_state = 0, .external_lex_state = 3}, + [2168] = {.lex_state = 4, .external_lex_state = 3}, [2169] = {.lex_state = 0, .external_lex_state = 3}, [2170] = {.lex_state = 0, .external_lex_state = 3}, - [2171] = {.lex_state = 4, .external_lex_state = 3}, + [2171] = {.lex_state = 0, .external_lex_state = 3}, [2172] = {.lex_state = 0, .external_lex_state = 3}, [2173] = {.lex_state = 0, .external_lex_state = 3}, - [2174] = {.lex_state = 4, .external_lex_state = 3}, - [2175] = {.lex_state = 58, .external_lex_state = 3}, + [2174] = {.lex_state = 0, .external_lex_state = 3}, + [2175] = {.lex_state = 0, .external_lex_state = 3}, [2176] = {.lex_state = 0, .external_lex_state = 3}, - [2177] = {.lex_state = 58, .external_lex_state = 3}, + [2177] = {.lex_state = 4, .external_lex_state = 3}, [2178] = {.lex_state = 0, .external_lex_state = 3}, [2179] = {.lex_state = 0, .external_lex_state = 3}, [2180] = {.lex_state = 0, .external_lex_state = 3}, [2181] = {.lex_state = 4, .external_lex_state = 3}, [2182] = {.lex_state = 0, .external_lex_state = 3}, - [2183] = {.lex_state = 58, .external_lex_state = 3}, + [2183] = {.lex_state = 0, .external_lex_state = 3}, [2184] = {.lex_state = 0, .external_lex_state = 3}, - [2185] = {.lex_state = 58, .external_lex_state = 3}, + [2185] = {.lex_state = 0, .external_lex_state = 3}, [2186] = {.lex_state = 0, .external_lex_state = 3}, - [2187] = {.lex_state = 0, .external_lex_state = 3}, - [2188] = {.lex_state = 0, .external_lex_state = 3}, + [2187] = {.lex_state = 4, .external_lex_state = 3}, + [2188] = {.lex_state = 18, .external_lex_state = 3}, [2189] = {.lex_state = 0, .external_lex_state = 3}, [2190] = {.lex_state = 0, .external_lex_state = 3}, - [2191] = {.lex_state = 58, .external_lex_state = 3}, + [2191] = {.lex_state = 0, .external_lex_state = 3}, [2192] = {.lex_state = 0, .external_lex_state = 3}, - [2193] = {.lex_state = 4, .external_lex_state = 3}, + [2193] = {.lex_state = 58, .external_lex_state = 3}, [2194] = {.lex_state = 0, .external_lex_state = 3}, [2195] = {.lex_state = 0, .external_lex_state = 3}, - [2196] = {.lex_state = 58, .external_lex_state = 3}, - [2197] = {.lex_state = 58, .external_lex_state = 3}, - [2198] = {.lex_state = 0, .external_lex_state = 3}, - [2199] = {.lex_state = 58, .external_lex_state = 3}, - [2200] = {.lex_state = 0, .external_lex_state = 3}, - [2201] = {.lex_state = 0, .external_lex_state = 3}, + [2196] = {.lex_state = 0, .external_lex_state = 3}, + [2197] = {.lex_state = 0, .external_lex_state = 3}, + [2198] = {.lex_state = 4, .external_lex_state = 3}, + [2199] = {.lex_state = 4, .external_lex_state = 3}, + [2200] = {.lex_state = 4, .external_lex_state = 3}, + [2201] = {.lex_state = 58, .external_lex_state = 3}, [2202] = {.lex_state = 0, .external_lex_state = 3}, - [2203] = {.lex_state = 4, .external_lex_state = 3}, + [2203] = {.lex_state = 0, .external_lex_state = 3}, [2204] = {.lex_state = 0, .external_lex_state = 3}, [2205] = {.lex_state = 58, .external_lex_state = 3}, [2206] = {.lex_state = 0, .external_lex_state = 3}, [2207] = {.lex_state = 4, .external_lex_state = 3}, - [2208] = {.lex_state = 0, .external_lex_state = 3}, - [2209] = {.lex_state = 4, .external_lex_state = 3}, - [2210] = {.lex_state = 0, .external_lex_state = 3}, - [2211] = {.lex_state = 0, .external_lex_state = 3}, - [2212] = {.lex_state = 58, .external_lex_state = 3}, + [2208] = {.lex_state = 58, .external_lex_state = 3}, + [2209] = {.lex_state = 58, .external_lex_state = 3}, + [2210] = {.lex_state = 4, .external_lex_state = 3}, + [2211] = {.lex_state = 58, .external_lex_state = 3}, + [2212] = {.lex_state = 4, .external_lex_state = 3}, [2213] = {.lex_state = 0, .external_lex_state = 3}, [2214] = {.lex_state = 0, .external_lex_state = 3}, [2215] = {.lex_state = 0, .external_lex_state = 3}, [2216] = {.lex_state = 0, .external_lex_state = 3}, - [2217] = {.lex_state = 4, .external_lex_state = 3}, + [2217] = {.lex_state = 58, .external_lex_state = 3}, [2218] = {.lex_state = 0, .external_lex_state = 3}, - [2219] = {.lex_state = 0, .external_lex_state = 3}, - [2220] = {.lex_state = 58, .external_lex_state = 3}, + [2219] = {.lex_state = 4, .external_lex_state = 3}, + [2220] = {.lex_state = 0, .external_lex_state = 3}, [2221] = {.lex_state = 0, .external_lex_state = 3}, [2222] = {.lex_state = 0, .external_lex_state = 3}, [2223] = {.lex_state = 58, .external_lex_state = 3}, [2224] = {.lex_state = 0, .external_lex_state = 3}, - [2225] = {.lex_state = 58, .external_lex_state = 3}, - [2226] = {.lex_state = 4, .external_lex_state = 3}, - [2227] = {.lex_state = 0, .external_lex_state = 3}, - [2228] = {.lex_state = 0, .external_lex_state = 3}, - [2229] = {.lex_state = 4, .external_lex_state = 3}, + [2225] = {.lex_state = 0, .external_lex_state = 3}, + [2226] = {.lex_state = 0, .external_lex_state = 3}, + [2227] = {.lex_state = 4, .external_lex_state = 3}, + [2228] = {.lex_state = 4, .external_lex_state = 3}, + [2229] = {.lex_state = 0, .external_lex_state = 3}, [2230] = {.lex_state = 0, .external_lex_state = 3}, [2231] = {.lex_state = 0, .external_lex_state = 3}, [2232] = {.lex_state = 0, .external_lex_state = 3}, [2233] = {.lex_state = 58, .external_lex_state = 3}, - [2234] = {.lex_state = 4, .external_lex_state = 3}, - [2235] = {.lex_state = 58, .external_lex_state = 3}, + [2234] = {.lex_state = 0, .external_lex_state = 3}, + [2235] = {.lex_state = 0, .external_lex_state = 3}, [2236] = {.lex_state = 0, .external_lex_state = 3}, - [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 18, .external_lex_state = 3}, - [2239] = {.lex_state = 0, .external_lex_state = 3}, - [2240] = {.lex_state = 58, .external_lex_state = 3}, + [2237] = {.lex_state = 18, .external_lex_state = 3}, + [2238] = {.lex_state = 58, .external_lex_state = 3}, + [2239] = {.lex_state = 18, .external_lex_state = 3}, + [2240] = {.lex_state = 0, .external_lex_state = 3}, [2241] = {.lex_state = 58, .external_lex_state = 3}, - [2242] = {.lex_state = 58, .external_lex_state = 3}, + [2242] = {.lex_state = 4, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, - [2244] = {.lex_state = 0, .external_lex_state = 3}, + [2244] = {.lex_state = 4, .external_lex_state = 3}, [2245] = {.lex_state = 0, .external_lex_state = 3}, [2246] = {.lex_state = 0, .external_lex_state = 3}, [2247] = {.lex_state = 0, .external_lex_state = 3}, - [2248] = {.lex_state = 58, .external_lex_state = 3}, - [2249] = {.lex_state = 0, .external_lex_state = 3}, + [2248] = {.lex_state = 4, .external_lex_state = 3}, + [2249] = {.lex_state = 58, .external_lex_state = 3}, [2250] = {.lex_state = 0, .external_lex_state = 3}, - [2251] = {.lex_state = 0, .external_lex_state = 3}, + [2251] = {.lex_state = 4, .external_lex_state = 3}, [2252] = {.lex_state = 0, .external_lex_state = 3}, - [2253] = {.lex_state = 4, .external_lex_state = 3}, + [2253] = {.lex_state = 58, .external_lex_state = 3}, [2254] = {.lex_state = 0, .external_lex_state = 3}, [2255] = {.lex_state = 0, .external_lex_state = 3}, - [2256] = {.lex_state = 0, .external_lex_state = 3}, - [2257] = {.lex_state = 0, .external_lex_state = 3}, - [2258] = {.lex_state = 0, .external_lex_state = 3}, - [2259] = {.lex_state = 0, .external_lex_state = 3}, - [2260] = {.lex_state = 58, .external_lex_state = 3}, - [2261] = {.lex_state = 0, .external_lex_state = 3}, - [2262] = {.lex_state = 0, .external_lex_state = 3}, + [2256] = {.lex_state = 4, .external_lex_state = 3}, + [2257] = {.lex_state = 58, .external_lex_state = 3}, + [2258] = {.lex_state = 58, .external_lex_state = 3}, + [2259] = {.lex_state = 58, .external_lex_state = 3}, + [2260] = {.lex_state = 18, .external_lex_state = 3}, + [2261] = {.lex_state = 58, .external_lex_state = 3}, + [2262] = {.lex_state = 58, .external_lex_state = 3}, [2263] = {.lex_state = 0, .external_lex_state = 3}, [2264] = {.lex_state = 0, .external_lex_state = 3}, - [2265] = {.lex_state = 0, .external_lex_state = 3}, - [2266] = {.lex_state = 0, .external_lex_state = 3}, + [2265] = {.lex_state = 58, .external_lex_state = 3}, + [2266] = {.lex_state = 58, .external_lex_state = 3}, [2267] = {.lex_state = 0, .external_lex_state = 3}, [2268] = {.lex_state = 0, .external_lex_state = 3}, - [2269] = {.lex_state = 0, .external_lex_state = 3}, - [2270] = {.lex_state = 58, .external_lex_state = 3}, - [2271] = {.lex_state = 0, .external_lex_state = 3}, + [2269] = {.lex_state = 58, .external_lex_state = 3}, + [2270] = {.lex_state = 9, .external_lex_state = 3}, + [2271] = {.lex_state = 58, .external_lex_state = 3}, [2272] = {.lex_state = 0, .external_lex_state = 3}, [2273] = {.lex_state = 0, .external_lex_state = 3}, [2274] = {.lex_state = 0, .external_lex_state = 3}, [2275] = {.lex_state = 0, .external_lex_state = 3}, [2276] = {.lex_state = 0, .external_lex_state = 3}, - [2277] = {.lex_state = 4, .external_lex_state = 3}, - [2278] = {.lex_state = 58, .external_lex_state = 3}, + [2277] = {.lex_state = 0, .external_lex_state = 3}, + [2278] = {.lex_state = 0, .external_lex_state = 3}, [2279] = {.lex_state = 0, .external_lex_state = 3}, [2280] = {.lex_state = 0, .external_lex_state = 3}, - [2281] = {.lex_state = 0, .external_lex_state = 3}, - [2282] = {.lex_state = 58, .external_lex_state = 3}, - [2283] = {.lex_state = 4, .external_lex_state = 3}, - [2284] = {.lex_state = 18, .external_lex_state = 3}, - [2285] = {.lex_state = 58, .external_lex_state = 3}, - [2286] = {.lex_state = 58, .external_lex_state = 3}, + [2281] = {.lex_state = 4, .external_lex_state = 3}, + [2282] = {.lex_state = 0, .external_lex_state = 3}, + [2283] = {.lex_state = 0, .external_lex_state = 3}, + [2284] = {.lex_state = 0, .external_lex_state = 3}, + [2285] = {.lex_state = 0, .external_lex_state = 3}, + [2286] = {.lex_state = 0, .external_lex_state = 3}, [2287] = {.lex_state = 0, .external_lex_state = 3}, - [2288] = {.lex_state = 18, .external_lex_state = 3}, + [2288] = {.lex_state = 0, .external_lex_state = 3}, [2289] = {.lex_state = 0, .external_lex_state = 3}, - [2290] = {.lex_state = 0, .external_lex_state = 5}, - [2291] = {.lex_state = 18, .external_lex_state = 3}, + [2290] = {.lex_state = 0, .external_lex_state = 3}, + [2291] = {.lex_state = 0, .external_lex_state = 3}, [2292] = {.lex_state = 0, .external_lex_state = 3}, [2293] = {.lex_state = 0, .external_lex_state = 3}, [2294] = {.lex_state = 0, .external_lex_state = 3}, - [2295] = {.lex_state = 4, .external_lex_state = 3}, + [2295] = {.lex_state = 0, .external_lex_state = 3}, [2296] = {.lex_state = 0, .external_lex_state = 3}, - [2297] = {.lex_state = 4, .external_lex_state = 3}, - [2298] = {.lex_state = 18, .external_lex_state = 3}, + [2297] = {.lex_state = 0, .external_lex_state = 3}, + [2298] = {.lex_state = 0, .external_lex_state = 3}, [2299] = {.lex_state = 0, .external_lex_state = 3}, - [2300] = {.lex_state = 4, .external_lex_state = 3}, - [2301] = {.lex_state = 4, .external_lex_state = 3}, - [2302] = {.lex_state = 4, .external_lex_state = 3}, + [2300] = {.lex_state = 0, .external_lex_state = 3}, + [2301] = {.lex_state = 0, .external_lex_state = 3}, + [2302] = {.lex_state = 0, .external_lex_state = 3}, [2303] = {.lex_state = 0, .external_lex_state = 3}, - [2304] = {.lex_state = 4, .external_lex_state = 3}, + [2304] = {.lex_state = 0, .external_lex_state = 3}, [2305] = {.lex_state = 0, .external_lex_state = 3}, - [2306] = {.lex_state = 0, .external_lex_state = 3}, + [2306] = {.lex_state = 4, .external_lex_state = 3}, [2307] = {.lex_state = 0, .external_lex_state = 3}, [2308] = {.lex_state = 0, .external_lex_state = 3}, [2309] = {.lex_state = 0, .external_lex_state = 3}, [2310] = {.lex_state = 0, .external_lex_state = 3}, - [2311] = {.lex_state = 58, .external_lex_state = 3}, + [2311] = {.lex_state = 0, .external_lex_state = 3}, [2312] = {.lex_state = 0, .external_lex_state = 3}, [2313] = {.lex_state = 0, .external_lex_state = 3}, [2314] = {.lex_state = 0, .external_lex_state = 3}, [2315] = {.lex_state = 58, .external_lex_state = 3}, - [2316] = {.lex_state = 58, .external_lex_state = 3}, + [2316] = {.lex_state = 18, .external_lex_state = 3}, [2317] = {.lex_state = 0, .external_lex_state = 3}, - [2318] = {.lex_state = 58, .external_lex_state = 3}, + [2318] = {.lex_state = 0, .external_lex_state = 3}, [2319] = {.lex_state = 0, .external_lex_state = 3}, - [2320] = {.lex_state = 58, .external_lex_state = 3}, - [2321] = {.lex_state = 0, .external_lex_state = 3}, + [2320] = {.lex_state = 0, .external_lex_state = 3}, + [2321] = {.lex_state = 0, .external_lex_state = 5}, [2322] = {.lex_state = 0, .external_lex_state = 3}, [2323] = {.lex_state = 0, .external_lex_state = 3}, - [2324] = {.lex_state = 58, .external_lex_state = 3}, - [2325] = {.lex_state = 0, .external_lex_state = 3}, - [2326] = {.lex_state = 0, .external_lex_state = 3}, - [2327] = {.lex_state = 58, .external_lex_state = 3}, + [2324] = {.lex_state = 4, .external_lex_state = 3}, + [2325] = {.lex_state = 4, .external_lex_state = 3}, + [2326] = {.lex_state = 58, .external_lex_state = 3}, + [2327] = {.lex_state = 4, .external_lex_state = 3}, [2328] = {.lex_state = 0, .external_lex_state = 3}, [2329] = {.lex_state = 58, .external_lex_state = 3}, - [2330] = {.lex_state = 4, .external_lex_state = 3}, - [2331] = {.lex_state = 58, .external_lex_state = 3}, - [2332] = {.lex_state = 4, .external_lex_state = 3}, - [2333] = {.lex_state = 58, .external_lex_state = 3}, + [2330] = {.lex_state = 0, .external_lex_state = 3}, + [2331] = {.lex_state = 0, .external_lex_state = 3}, + [2332] = {.lex_state = 0, .external_lex_state = 3}, + [2333] = {.lex_state = 0, .external_lex_state = 3}, [2334] = {.lex_state = 0, .external_lex_state = 3}, - [2335] = {.lex_state = 9, .external_lex_state = 3}, - [2336] = {.lex_state = 0, .external_lex_state = 3}, - [2337] = {.lex_state = 0, .external_lex_state = 3}, + [2335] = {.lex_state = 58, .external_lex_state = 3}, + [2336] = {.lex_state = 58, .external_lex_state = 3}, + [2337] = {.lex_state = 58, .external_lex_state = 3}, [2338] = {.lex_state = 0, .external_lex_state = 3}, [2339] = {.lex_state = 0, .external_lex_state = 3}, [2340] = {.lex_state = 0, .external_lex_state = 3}, [2341] = {.lex_state = 0, .external_lex_state = 3}, [2342] = {.lex_state = 0, .external_lex_state = 3}, - [2343] = {.lex_state = 18, .external_lex_state = 3}, + [2343] = {.lex_state = 0, .external_lex_state = 3}, [2344] = {.lex_state = 0, .external_lex_state = 3}, - [2345] = {.lex_state = 0, .external_lex_state = 3}, - [2346] = {.lex_state = 4, .external_lex_state = 3}, - [2347] = {.lex_state = 9, .external_lex_state = 3}, - [2348] = {.lex_state = 58, .external_lex_state = 3}, + [2345] = {.lex_state = 58, .external_lex_state = 3}, + [2346] = {.lex_state = 58, .external_lex_state = 3}, + [2347] = {.lex_state = 0, .external_lex_state = 3}, + [2348] = {.lex_state = 0, .external_lex_state = 3}, [2349] = {.lex_state = 0, .external_lex_state = 3}, - [2350] = {.lex_state = 4, .external_lex_state = 3}, + [2350] = {.lex_state = 0, .external_lex_state = 3}, [2351] = {.lex_state = 0, .external_lex_state = 3}, - [2352] = {.lex_state = 4, .external_lex_state = 3}, + [2352] = {.lex_state = 0, .external_lex_state = 3}, [2353] = {.lex_state = 4, .external_lex_state = 3}, - [2354] = {.lex_state = 4, .external_lex_state = 3}, - [2355] = {.lex_state = 0, .external_lex_state = 3}, - [2356] = {.lex_state = 4, .external_lex_state = 3}, - [2357] = {.lex_state = 4, .external_lex_state = 3}, + [2354] = {.lex_state = 18, .external_lex_state = 3}, + [2355] = {.lex_state = 58, .external_lex_state = 3}, + [2356] = {.lex_state = 0, .external_lex_state = 3}, + [2357] = {.lex_state = 0, .external_lex_state = 3}, [2358] = {.lex_state = 0, .external_lex_state = 3}, [2359] = {.lex_state = 0, .external_lex_state = 3}, - [2360] = {.lex_state = 4, .external_lex_state = 3}, + [2360] = {.lex_state = 58, .external_lex_state = 3}, [2361] = {.lex_state = 0, .external_lex_state = 3}, [2362] = {.lex_state = 0, .external_lex_state = 3}, - [2363] = {.lex_state = 9, .external_lex_state = 3}, - [2364] = {.lex_state = 4, .external_lex_state = 3}, - [2365] = {.lex_state = 4, .external_lex_state = 3}, - [2366] = {.lex_state = 4, .external_lex_state = 3}, - [2367] = {.lex_state = 4, .external_lex_state = 3}, + [2363] = {.lex_state = 0, .external_lex_state = 3}, + [2364] = {.lex_state = 0, .external_lex_state = 3}, + [2365] = {.lex_state = 0, .external_lex_state = 3}, + [2366] = {.lex_state = 0, .external_lex_state = 3}, + [2367] = {.lex_state = 58, .external_lex_state = 3}, [2368] = {.lex_state = 0, .external_lex_state = 3}, [2369] = {.lex_state = 0, .external_lex_state = 3}, [2370] = {.lex_state = 4, .external_lex_state = 3}, [2371] = {.lex_state = 4, .external_lex_state = 3}, - [2372] = {.lex_state = 0, .external_lex_state = 3}, - [2373] = {.lex_state = 0, .external_lex_state = 3}, - [2374] = {.lex_state = 0, .external_lex_state = 3}, - [2375] = {.lex_state = 4, .external_lex_state = 3}, - [2376] = {.lex_state = 4, .external_lex_state = 3}, - [2377] = {.lex_state = 4, .external_lex_state = 3}, + [2372] = {.lex_state = 58, .external_lex_state = 3}, + [2373] = {.lex_state = 58, .external_lex_state = 3}, + [2374] = {.lex_state = 4, .external_lex_state = 3}, + [2375] = {.lex_state = 0, .external_lex_state = 3}, + [2376] = {.lex_state = 0, .external_lex_state = 3}, + [2377] = {.lex_state = 0, .external_lex_state = 3}, [2378] = {.lex_state = 0, .external_lex_state = 3}, - [2379] = {.lex_state = 9, .external_lex_state = 3}, + [2379] = {.lex_state = 0, .external_lex_state = 3}, [2380] = {.lex_state = 4, .external_lex_state = 3}, - [2381] = {.lex_state = 0, .external_lex_state = 3}, - [2382] = {.lex_state = 9, .external_lex_state = 3}, - [2383] = {.lex_state = 0, .external_lex_state = 3}, - [2384] = {.lex_state = 0, .external_lex_state = 3}, + [2381] = {.lex_state = 4, .external_lex_state = 3}, + [2382] = {.lex_state = 0, .external_lex_state = 3}, + [2383] = {.lex_state = 4, .external_lex_state = 3}, + [2384] = {.lex_state = 4, .external_lex_state = 3}, [2385] = {.lex_state = 4, .external_lex_state = 3}, - [2386] = {.lex_state = 9, .external_lex_state = 3}, + [2386] = {.lex_state = 4, .external_lex_state = 3}, [2387] = {.lex_state = 4, .external_lex_state = 3}, [2388] = {.lex_state = 0, .external_lex_state = 3}, [2389] = {.lex_state = 4, .external_lex_state = 3}, [2390] = {.lex_state = 4, .external_lex_state = 3}, [2391] = {.lex_state = 4, .external_lex_state = 3}, [2392] = {.lex_state = 4, .external_lex_state = 3}, - [2393] = {.lex_state = 0, .external_lex_state = 3}, - [2394] = {.lex_state = 4, .external_lex_state = 3}, - [2395] = {.lex_state = 4, .external_lex_state = 3}, - [2396] = {.lex_state = 0, .external_lex_state = 3}, - [2397] = {.lex_state = 4, .external_lex_state = 3}, - [2398] = {.lex_state = 0, .external_lex_state = 3}, - [2399] = {.lex_state = 4, .external_lex_state = 3}, + [2393] = {.lex_state = 4, .external_lex_state = 3}, + [2394] = {.lex_state = 0, .external_lex_state = 3}, + [2395] = {.lex_state = 0, .external_lex_state = 3}, + [2396] = {.lex_state = 9, .external_lex_state = 3}, + [2397] = {.lex_state = 0, .external_lex_state = 3}, + [2398] = {.lex_state = 4, .external_lex_state = 3}, + [2399] = {.lex_state = 0, .external_lex_state = 3}, [2400] = {.lex_state = 4, .external_lex_state = 3}, [2401] = {.lex_state = 4, .external_lex_state = 3}, - [2402] = {.lex_state = 4, .external_lex_state = 3}, - [2403] = {.lex_state = 4, .external_lex_state = 3}, - [2404] = {.lex_state = 4, .external_lex_state = 3}, - [2405] = {.lex_state = 0, .external_lex_state = 3}, - [2406] = {.lex_state = 4, .external_lex_state = 3}, + [2402] = {.lex_state = 0, .external_lex_state = 3}, + [2403] = {.lex_state = 0, .external_lex_state = 3}, + [2404] = {.lex_state = 0, .external_lex_state = 3}, + [2405] = {.lex_state = 9, .external_lex_state = 3}, + [2406] = {.lex_state = 58, .external_lex_state = 3}, [2407] = {.lex_state = 4, .external_lex_state = 3}, [2408] = {.lex_state = 4, .external_lex_state = 3}, - [2409] = {.lex_state = 0, .external_lex_state = 3}, - [2410] = {.lex_state = 0, .external_lex_state = 3}, + [2409] = {.lex_state = 4, .external_lex_state = 3}, + [2410] = {.lex_state = 4, .external_lex_state = 3}, [2411] = {.lex_state = 4, .external_lex_state = 3}, [2412] = {.lex_state = 0, .external_lex_state = 3}, - [2413] = {.lex_state = 0, .external_lex_state = 3}, - [2414] = {.lex_state = 0, .external_lex_state = 3}, + [2413] = {.lex_state = 4, .external_lex_state = 3}, + [2414] = {.lex_state = 4, .external_lex_state = 3}, [2415] = {.lex_state = 0, .external_lex_state = 3}, [2416] = {.lex_state = 0, .external_lex_state = 3}, - [2417] = {.lex_state = 58, .external_lex_state = 3}, + [2417] = {.lex_state = 4, .external_lex_state = 3}, [2418] = {.lex_state = 4, .external_lex_state = 3}, [2419] = {.lex_state = 4, .external_lex_state = 3}, [2420] = {.lex_state = 4, .external_lex_state = 3}, - [2421] = {.lex_state = 4, .external_lex_state = 3}, + [2421] = {.lex_state = 58, .external_lex_state = 3}, [2422] = {.lex_state = 0, .external_lex_state = 3}, - [2423] = {.lex_state = 4, .external_lex_state = 3}, - [2424] = {.lex_state = 4, .external_lex_state = 3}, + [2423] = {.lex_state = 0, .external_lex_state = 3}, + [2424] = {.lex_state = 0, .external_lex_state = 3}, [2425] = {.lex_state = 4, .external_lex_state = 3}, - [2426] = {.lex_state = 58, .external_lex_state = 3}, + [2426] = {.lex_state = 0, .external_lex_state = 3}, [2427] = {.lex_state = 4, .external_lex_state = 3}, - [2428] = {.lex_state = 4, .external_lex_state = 3}, - [2429] = {.lex_state = 4, .external_lex_state = 3}, - [2430] = {.lex_state = 0, .external_lex_state = 3}, + [2428] = {.lex_state = 0, .external_lex_state = 3}, + [2429] = {.lex_state = 0, .external_lex_state = 3}, + [2430] = {.lex_state = 4, .external_lex_state = 3}, [2431] = {.lex_state = 4, .external_lex_state = 3}, - [2432] = {.lex_state = 0, .external_lex_state = 3}, - [2433] = {.lex_state = 4, .external_lex_state = 3}, - [2434] = {.lex_state = 0, .external_lex_state = 3}, + [2432] = {.lex_state = 4, .external_lex_state = 3}, + [2433] = {.lex_state = 9, .external_lex_state = 3}, + [2434] = {.lex_state = 4, .external_lex_state = 3}, [2435] = {.lex_state = 0, .external_lex_state = 3}, [2436] = {.lex_state = 4, .external_lex_state = 3}, [2437] = {.lex_state = 4, .external_lex_state = 3}, - [2438] = {.lex_state = 0, .external_lex_state = 3}, - [2439] = {.lex_state = 0, .external_lex_state = 3}, + [2438] = {.lex_state = 4, .external_lex_state = 3}, + [2439] = {.lex_state = 4, .external_lex_state = 3}, [2440] = {.lex_state = 4, .external_lex_state = 3}, - [2441] = {.lex_state = 0, .external_lex_state = 3}, - [2442] = {.lex_state = 0, .external_lex_state = 3}, + [2441] = {.lex_state = 4, .external_lex_state = 3}, + [2442] = {.lex_state = 4, .external_lex_state = 3}, [2443] = {.lex_state = 4, .external_lex_state = 3}, - [2444] = {.lex_state = 0, .external_lex_state = 3}, - [2445] = {.lex_state = 0, .external_lex_state = 3}, + [2444] = {.lex_state = 4, .external_lex_state = 3}, + [2445] = {.lex_state = 4, .external_lex_state = 3}, [2446] = {.lex_state = 4, .external_lex_state = 3}, [2447] = {.lex_state = 0, .external_lex_state = 3}, [2448] = {.lex_state = 0, .external_lex_state = 3}, [2449] = {.lex_state = 0, .external_lex_state = 3}, - [2450] = {.lex_state = 0, .external_lex_state = 3}, - [2451] = {.lex_state = 4, .external_lex_state = 3}, - [2452] = {.lex_state = 9, .external_lex_state = 3}, + [2450] = {.lex_state = 4, .external_lex_state = 3}, + [2451] = {.lex_state = 0, .external_lex_state = 3}, + [2452] = {.lex_state = 0, .external_lex_state = 3}, [2453] = {.lex_state = 4, .external_lex_state = 3}, - [2454] = {.lex_state = 4, .external_lex_state = 3}, - [2455] = {.lex_state = 0, .external_lex_state = 3}, - [2456] = {.lex_state = 4, .external_lex_state = 3}, - [2457] = {.lex_state = 4, .external_lex_state = 3}, + [2454] = {.lex_state = 0, .external_lex_state = 3}, + [2455] = {.lex_state = 4, .external_lex_state = 3}, + [2456] = {.lex_state = 0, .external_lex_state = 3}, + [2457] = {.lex_state = 0, .external_lex_state = 3}, [2458] = {.lex_state = 4, .external_lex_state = 3}, - [2459] = {.lex_state = 0, .external_lex_state = 3}, - [2460] = {.lex_state = 0, .external_lex_state = 3}, - [2461] = {.lex_state = 0, .external_lex_state = 3}, + [2459] = {.lex_state = 4, .external_lex_state = 3}, + [2460] = {.lex_state = 58, .external_lex_state = 3}, + [2461] = {.lex_state = 4, .external_lex_state = 3}, [2462] = {.lex_state = 0, .external_lex_state = 3}, - [2463] = {.lex_state = 0, .external_lex_state = 3}, - [2464] = {.lex_state = 0, .external_lex_state = 3}, + [2463] = {.lex_state = 4, .external_lex_state = 3}, + [2464] = {.lex_state = 9, .external_lex_state = 3}, [2465] = {.lex_state = 0, .external_lex_state = 3}, - [2466] = {.lex_state = 0, .external_lex_state = 3}, - [2467] = {.lex_state = 4, .external_lex_state = 3}, + [2466] = {.lex_state = 4, .external_lex_state = 3}, + [2467] = {.lex_state = 9, .external_lex_state = 3}, [2468] = {.lex_state = 4, .external_lex_state = 3}, - [2469] = {.lex_state = 9, .external_lex_state = 3}, - [2470] = {.lex_state = 0, .external_lex_state = 3}, - [2471] = {.lex_state = 4, .external_lex_state = 3}, - [2472] = {.lex_state = 4, .external_lex_state = 3}, - [2473] = {.lex_state = 4, .external_lex_state = 3}, + [2469] = {.lex_state = 4, .external_lex_state = 3}, + [2470] = {.lex_state = 4, .external_lex_state = 3}, + [2471] = {.lex_state = 0, .external_lex_state = 3}, + [2472] = {.lex_state = 0, .external_lex_state = 3}, + [2473] = {.lex_state = 0, .external_lex_state = 3}, [2474] = {.lex_state = 0, .external_lex_state = 3}, - [2475] = {.lex_state = 4, .external_lex_state = 3}, - [2476] = {.lex_state = 0, .external_lex_state = 3}, - [2477] = {.lex_state = 4, .external_lex_state = 3}, + [2475] = {.lex_state = 0, .external_lex_state = 3}, + [2476] = {.lex_state = 4, .external_lex_state = 3}, + [2477] = {.lex_state = 0, .external_lex_state = 3}, [2478] = {.lex_state = 0, .external_lex_state = 3}, - [2479] = {.lex_state = 0, .external_lex_state = 3}, - [2480] = {.lex_state = 0, .external_lex_state = 3}, + [2479] = {.lex_state = 4, .external_lex_state = 3}, + [2480] = {.lex_state = 58, .external_lex_state = 3}, [2481] = {.lex_state = 4, .external_lex_state = 3}, - [2482] = {.lex_state = 0, .external_lex_state = 3}, - [2483] = {.lex_state = 9, .external_lex_state = 3}, - [2484] = {.lex_state = 0, .external_lex_state = 3}, + [2482] = {.lex_state = 4, .external_lex_state = 3}, + [2483] = {.lex_state = 4, .external_lex_state = 3}, + [2484] = {.lex_state = 4, .external_lex_state = 3}, [2485] = {.lex_state = 4, .external_lex_state = 3}, - [2486] = {.lex_state = 0, .external_lex_state = 3}, + [2486] = {.lex_state = 4, .external_lex_state = 3}, [2487] = {.lex_state = 4, .external_lex_state = 3}, - [2488] = {.lex_state = 4, .external_lex_state = 3}, + [2488] = {.lex_state = 0, .external_lex_state = 3}, [2489] = {.lex_state = 0, .external_lex_state = 3}, - [2490] = {.lex_state = 9, .external_lex_state = 3}, - [2491] = {.lex_state = 0, .external_lex_state = 3}, + [2490] = {.lex_state = 0, .external_lex_state = 3}, + [2491] = {.lex_state = 4, .external_lex_state = 3}, [2492] = {.lex_state = 0, .external_lex_state = 3}, [2493] = {.lex_state = 0, .external_lex_state = 3}, - [2494] = {.lex_state = 4, .external_lex_state = 3}, - [2495] = {.lex_state = 0, .external_lex_state = 3}, - [2496] = {.lex_state = 0, .external_lex_state = 3}, - [2497] = {.lex_state = 58, .external_lex_state = 3}, + [2494] = {.lex_state = 0, .external_lex_state = 3}, + [2495] = {.lex_state = 4, .external_lex_state = 3}, + [2496] = {.lex_state = 4, .external_lex_state = 3}, + [2497] = {.lex_state = 4, .external_lex_state = 3}, [2498] = {.lex_state = 0, .external_lex_state = 3}, [2499] = {.lex_state = 4, .external_lex_state = 3}, [2500] = {.lex_state = 0, .external_lex_state = 3}, [2501] = {.lex_state = 4, .external_lex_state = 3}, - [2502] = {.lex_state = 4, .external_lex_state = 3}, + [2502] = {.lex_state = 0, .external_lex_state = 3}, [2503] = {.lex_state = 4, .external_lex_state = 3}, [2504] = {.lex_state = 0, .external_lex_state = 3}, - [2505] = {.lex_state = 4, .external_lex_state = 3}, + [2505] = {.lex_state = 0, .external_lex_state = 3}, [2506] = {.lex_state = 0, .external_lex_state = 3}, - [2507] = {.lex_state = 0, .external_lex_state = 3}, + [2507] = {.lex_state = 9, .external_lex_state = 3}, [2508] = {.lex_state = 0, .external_lex_state = 3}, [2509] = {.lex_state = 0, .external_lex_state = 3}, [2510] = {.lex_state = 0, .external_lex_state = 3}, - [2511] = {.lex_state = 4, .external_lex_state = 3}, - [2512] = {.lex_state = 4, .external_lex_state = 3}, + [2511] = {.lex_state = 0, .external_lex_state = 3}, + [2512] = {.lex_state = 0, .external_lex_state = 3}, [2513] = {.lex_state = 0, .external_lex_state = 3}, - [2514] = {.lex_state = 0, .external_lex_state = 3}, - [2515] = {.lex_state = 4, .external_lex_state = 3}, - [2516] = {.lex_state = 0, .external_lex_state = 3}, + [2514] = {.lex_state = 9, .external_lex_state = 3}, + [2515] = {.lex_state = 0, .external_lex_state = 3}, + [2516] = {.lex_state = 4, .external_lex_state = 3}, [2517] = {.lex_state = 0, .external_lex_state = 3}, - [2518] = {.lex_state = 0, .external_lex_state = 3}, + [2518] = {.lex_state = 4, .external_lex_state = 3}, [2519] = {.lex_state = 0, .external_lex_state = 3}, [2520] = {.lex_state = 0, .external_lex_state = 3}, [2521] = {.lex_state = 4, .external_lex_state = 3}, - [2522] = {.lex_state = 9, .external_lex_state = 3}, + [2522] = {.lex_state = 0, .external_lex_state = 3}, [2523] = {.lex_state = 0, .external_lex_state = 3}, - [2524] = {.lex_state = 9, .external_lex_state = 3}, + [2524] = {.lex_state = 0, .external_lex_state = 3}, [2525] = {.lex_state = 0, .external_lex_state = 3}, - [2526] = {.lex_state = 0, .external_lex_state = 3}, - [2527] = {.lex_state = 4, .external_lex_state = 3}, - [2528] = {.lex_state = 4, .external_lex_state = 3}, - [2529] = {.lex_state = 9, .external_lex_state = 3}, + [2526] = {.lex_state = 4, .external_lex_state = 3}, + [2527] = {.lex_state = 0, .external_lex_state = 3}, + [2528] = {.lex_state = 0, .external_lex_state = 3}, + [2529] = {.lex_state = 0, .external_lex_state = 3}, [2530] = {.lex_state = 0, .external_lex_state = 3}, - [2531] = {.lex_state = 4, .external_lex_state = 3}, - [2532] = {.lex_state = 4, .external_lex_state = 3}, - [2533] = {.lex_state = 4, .external_lex_state = 3}, - [2534] = {.lex_state = 0, .external_lex_state = 3}, + [2531] = {.lex_state = 9, .external_lex_state = 3}, + [2532] = {.lex_state = 0, .external_lex_state = 3}, + [2533] = {.lex_state = 0, .external_lex_state = 3}, + [2534] = {.lex_state = 4, .external_lex_state = 3}, [2535] = {.lex_state = 0, .external_lex_state = 3}, [2536] = {.lex_state = 0, .external_lex_state = 3}, - [2537] = {.lex_state = 0, .external_lex_state = 3}, - [2538] = {.lex_state = 9, .external_lex_state = 3}, + [2537] = {.lex_state = 4, .external_lex_state = 3}, + [2538] = {.lex_state = 0, .external_lex_state = 3}, [2539] = {.lex_state = 0, .external_lex_state = 3}, [2540] = {.lex_state = 0, .external_lex_state = 3}, [2541] = {.lex_state = 0, .external_lex_state = 3}, [2542] = {.lex_state = 4, .external_lex_state = 3}, - [2543] = {.lex_state = 9, .external_lex_state = 3}, + [2543] = {.lex_state = 0, .external_lex_state = 3}, [2544] = {.lex_state = 0, .external_lex_state = 3}, [2545] = {.lex_state = 4, .external_lex_state = 3}, - [2546] = {.lex_state = 9, .external_lex_state = 3}, + [2546] = {.lex_state = 4, .external_lex_state = 3}, [2547] = {.lex_state = 0, .external_lex_state = 3}, [2548] = {.lex_state = 0, .external_lex_state = 3}, [2549] = {.lex_state = 0, .external_lex_state = 3}, - [2550] = {.lex_state = 0, .external_lex_state = 3}, - [2551] = {.lex_state = 0, .external_lex_state = 3}, - [2552] = {.lex_state = 9, .external_lex_state = 3}, - [2553] = {.lex_state = 4, .external_lex_state = 3}, - [2554] = {.lex_state = 9, .external_lex_state = 3}, + [2550] = {.lex_state = 4, .external_lex_state = 3}, + [2551] = {.lex_state = 4, .external_lex_state = 3}, + [2552] = {.lex_state = 0, .external_lex_state = 3}, + [2553] = {.lex_state = 0, .external_lex_state = 3}, + [2554] = {.lex_state = 0, .external_lex_state = 3}, [2555] = {.lex_state = 0, .external_lex_state = 3}, - [2556] = {.lex_state = 0, .external_lex_state = 3}, + [2556] = {.lex_state = 9, .external_lex_state = 3}, [2557] = {.lex_state = 0, .external_lex_state = 3}, - [2558] = {.lex_state = 9, .external_lex_state = 3}, + [2558] = {.lex_state = 0, .external_lex_state = 3}, [2559] = {.lex_state = 0, .external_lex_state = 3}, - [2560] = {.lex_state = 0, .external_lex_state = 3}, - [2561] = {.lex_state = 4, .external_lex_state = 3}, + [2560] = {.lex_state = 4, .external_lex_state = 3}, + [2561] = {.lex_state = 0, .external_lex_state = 3}, [2562] = {.lex_state = 0, .external_lex_state = 3}, [2563] = {.lex_state = 4, .external_lex_state = 3}, [2564] = {.lex_state = 0, .external_lex_state = 3}, [2565] = {.lex_state = 0, .external_lex_state = 3}, - [2566] = {.lex_state = 4, .external_lex_state = 3}, - [2567] = {.lex_state = 0, .external_lex_state = 3}, + [2566] = {.lex_state = 0, .external_lex_state = 3}, + [2567] = {.lex_state = 4, .external_lex_state = 3}, [2568] = {.lex_state = 0, .external_lex_state = 3}, [2569] = {.lex_state = 0, .external_lex_state = 3}, - [2570] = {.lex_state = 4, .external_lex_state = 3}, - [2571] = {.lex_state = 4, .external_lex_state = 3}, - [2572] = {.lex_state = 4, .external_lex_state = 3}, + [2570] = {.lex_state = 9, .external_lex_state = 3}, + [2571] = {.lex_state = 0, .external_lex_state = 3}, + [2572] = {.lex_state = 9, .external_lex_state = 3}, [2573] = {.lex_state = 0, .external_lex_state = 3}, [2574] = {.lex_state = 4, .external_lex_state = 3}, - [2575] = {.lex_state = 4, .external_lex_state = 3}, + [2575] = {.lex_state = 0, .external_lex_state = 3}, [2576] = {.lex_state = 0, .external_lex_state = 3}, - [2577] = {.lex_state = 0, .external_lex_state = 3}, - [2578] = {.lex_state = 4, .external_lex_state = 3}, + [2577] = {.lex_state = 9, .external_lex_state = 3}, + [2578] = {.lex_state = 0, .external_lex_state = 3}, [2579] = {.lex_state = 0, .external_lex_state = 3}, [2580] = {.lex_state = 0, .external_lex_state = 3}, - [2581] = {.lex_state = 4, .external_lex_state = 3}, + [2581] = {.lex_state = 0, .external_lex_state = 3}, + [2582] = {.lex_state = 0, .external_lex_state = 3}, + [2583] = {.lex_state = 0, .external_lex_state = 3}, + [2584] = {.lex_state = 0, .external_lex_state = 3}, + [2585] = {.lex_state = 4, .external_lex_state = 3}, + [2586] = {.lex_state = 9, .external_lex_state = 3}, + [2587] = {.lex_state = 0, .external_lex_state = 3}, + [2588] = {.lex_state = 0, .external_lex_state = 3}, + [2589] = {.lex_state = 0, .external_lex_state = 3}, + [2590] = {.lex_state = 0, .external_lex_state = 3}, + [2591] = {.lex_state = 9, .external_lex_state = 3}, + [2592] = {.lex_state = 0, .external_lex_state = 3}, + [2593] = {.lex_state = 0, .external_lex_state = 3}, + [2594] = {.lex_state = 9, .external_lex_state = 3}, + [2595] = {.lex_state = 4, .external_lex_state = 3}, + [2596] = {.lex_state = 0, .external_lex_state = 3}, + [2597] = {.lex_state = 0, .external_lex_state = 3}, + [2598] = {.lex_state = 0, .external_lex_state = 3}, + [2599] = {.lex_state = 0, .external_lex_state = 3}, + [2600] = {.lex_state = 9, .external_lex_state = 3}, + [2601] = {.lex_state = 0, .external_lex_state = 3}, + [2602] = {.lex_state = 9, .external_lex_state = 3}, + [2603] = {.lex_state = 0, .external_lex_state = 3}, + [2604] = {.lex_state = 0, .external_lex_state = 3}, + [2605] = {.lex_state = 0, .external_lex_state = 3}, + [2606] = {.lex_state = 0, .external_lex_state = 3}, + [2607] = {.lex_state = 9, .external_lex_state = 3}, + [2608] = {.lex_state = 0, .external_lex_state = 3}, + [2609] = {.lex_state = 4, .external_lex_state = 3}, + [2610] = {.lex_state = 0, .external_lex_state = 3}, + [2611] = {.lex_state = 4, .external_lex_state = 3}, + [2612] = {.lex_state = 4, .external_lex_state = 3}, + [2613] = {.lex_state = 0, .external_lex_state = 3}, + [2614] = {.lex_state = 4, .external_lex_state = 3}, + [2615] = {.lex_state = 0, .external_lex_state = 3}, + [2616] = {.lex_state = 0, .external_lex_state = 3}, + [2617] = {.lex_state = 0, .external_lex_state = 3}, + [2618] = {.lex_state = 4, .external_lex_state = 3}, + [2619] = {.lex_state = 4, .external_lex_state = 3}, + [2620] = {.lex_state = 4, .external_lex_state = 3}, + [2621] = {.lex_state = 0, .external_lex_state = 3}, + [2622] = {.lex_state = 4, .external_lex_state = 3}, + [2623] = {.lex_state = 4, .external_lex_state = 3}, + [2624] = {.lex_state = 0, .external_lex_state = 3}, + [2625] = {.lex_state = 4, .external_lex_state = 3}, + [2626] = {.lex_state = 4, .external_lex_state = 3}, + [2627] = {.lex_state = 0, .external_lex_state = 3}, + [2628] = {.lex_state = 0, .external_lex_state = 3}, + [2629] = {.lex_state = 4, .external_lex_state = 3}, }; enum { @@ -16105,6 +18826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), [anon_sym_COLON_COLON] = ACTIONS(1), [anon_sym__] = ACTIONS(1), [anon_sym_AMP] = ACTIONS(1), @@ -16139,7 +18861,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(1), [anon_sym_GT_GT_EQ] = ACTIONS(1), [anon_sym_yield] = ACTIONS(1), - [anon_sym_else] = ACTIONS(1), [anon_sym_move] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), @@ -16161,80 +18882,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2489), - [sym__statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_macro_definition] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_mod_item] = STATE(8), - [sym_foreign_mod_item] = STATE(8), - [sym_struct_item] = STATE(8), - [sym_union_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_extern_crate_declaration] = STATE(8), - [sym_const_item] = STATE(8), - [sym_static_item] = STATE(8), - [sym_type_item] = STATE(8), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(8), - [sym_trait_item] = STATE(8), - [sym_associated_type] = STATE(8), - [sym_let_declaration] = STATE(8), - [sym_use_declaration] = STATE(8), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), + [sym_source_file] = STATE(2543), + [sym__statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_macro_definition] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_mod_item] = STATE(6), + [sym_foreign_mod_item] = STATE(6), + [sym_struct_item] = STATE(6), + [sym_union_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_extern_crate_declaration] = STATE(6), + [sym_const_item] = STATE(6), + [sym_static_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(6), + [sym_trait_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1346), + [sym_macro_invocation] = STATE(135), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -16311,79 +19032,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1288), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1317), + [sym_macro_invocation] = STATE(135), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16460,79 +19181,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1281), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(135), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16609,79 +19330,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_macro_definition] = STATE(9), - [sym_attribute_item] = STATE(9), - [sym_inner_attribute_item] = STATE(9), - [sym_mod_item] = STATE(9), - [sym_foreign_mod_item] = STATE(9), - [sym_struct_item] = STATE(9), - [sym_union_item] = STATE(9), - [sym_enum_item] = STATE(9), - [sym_extern_crate_declaration] = STATE(9), - [sym_const_item] = STATE(9), - [sym_static_item] = STATE(9), - [sym_type_item] = STATE(9), - [sym_function_item] = STATE(9), - [sym_function_signature_item] = STATE(9), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(9), - [sym_trait_item] = STATE(9), - [sym_associated_type] = STATE(9), - [sym_let_declaration] = STATE(9), - [sym_use_declaration] = STATE(9), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1282), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(135), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16758,79 +19479,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__statement] = STATE(3), - [sym_empty_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_macro_definition] = STATE(3), - [sym_attribute_item] = STATE(3), - [sym_inner_attribute_item] = STATE(3), - [sym_mod_item] = STATE(3), - [sym_foreign_mod_item] = STATE(3), - [sym_struct_item] = STATE(3), - [sym_union_item] = STATE(3), - [sym_enum_item] = STATE(3), - [sym_extern_crate_declaration] = STATE(3), - [sym_const_item] = STATE(3), - [sym_static_item] = STATE(3), - [sym_type_item] = STATE(3), - [sym_function_item] = STATE(3), - [sym_function_signature_item] = STATE(3), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(3), - [sym_trait_item] = STATE(3), - [sym_associated_type] = STATE(3), - [sym_let_declaration] = STATE(3), - [sym_use_declaration] = STATE(3), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1267), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(135), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16907,85 +19628,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [6] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1346), + [sym_macro_invocation] = STATE(135), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [ts_builtin_sym_end] = ACTIONS(113), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17056,79 +19777,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [7] = { - [sym__statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_macro_definition] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_foreign_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_union_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_extern_crate_declaration] = STATE(6), - [sym_const_item] = STATE(6), - [sym_static_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1247), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), + [sym__statement] = STATE(5), + [sym_empty_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_macro_definition] = STATE(5), + [sym_attribute_item] = STATE(5), + [sym_inner_attribute_item] = STATE(5), + [sym_mod_item] = STATE(5), + [sym_foreign_mod_item] = STATE(5), + [sym_struct_item] = STATE(5), + [sym_union_item] = STATE(5), + [sym_enum_item] = STATE(5), + [sym_extern_crate_declaration] = STATE(5), + [sym_const_item] = STATE(5), + [sym_static_item] = STATE(5), + [sym_type_item] = STATE(5), + [sym_function_item] = STATE(5), + [sym_function_signature_item] = STATE(5), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(5), + [sym_trait_item] = STATE(5), + [sym_associated_type] = STATE(5), + [sym_let_declaration] = STATE(5), + [sym_use_declaration] = STATE(5), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1241), + [sym_macro_invocation] = STATE(135), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17205,85 +19926,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [8] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), + [sym__statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_macro_definition] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_foreign_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_union_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_extern_crate_declaration] = STATE(14), + [sym_const_item] = STATE(14), + [sym_static_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(135), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(117), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17354,79 +20075,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [9] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1279), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(135), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17503,681 +20224,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(121), - [sym_identifier] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_macro_rules_BANG] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(132), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(138), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_u8] = ACTIONS(144), - [anon_sym_i8] = ACTIONS(144), - [anon_sym_u16] = ACTIONS(144), - [anon_sym_i16] = ACTIONS(144), - [anon_sym_u32] = ACTIONS(144), - [anon_sym_i32] = ACTIONS(144), - [anon_sym_u64] = ACTIONS(144), - [anon_sym_i64] = ACTIONS(144), - [anon_sym_u128] = ACTIONS(144), - [anon_sym_i128] = ACTIONS(144), - [anon_sym_isize] = ACTIONS(144), - [anon_sym_usize] = ACTIONS(144), - [anon_sym_f32] = ACTIONS(144), - [anon_sym_f64] = ACTIONS(144), - [anon_sym_bool] = ACTIONS(144), - [anon_sym_str] = ACTIONS(144), - [anon_sym_char] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_async] = ACTIONS(150), - [anon_sym_break] = ACTIONS(153), - [anon_sym_const] = ACTIONS(156), - [anon_sym_continue] = ACTIONS(159), - [anon_sym_default] = ACTIONS(162), - [anon_sym_enum] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(168), - [anon_sym_for] = ACTIONS(171), - [anon_sym_if] = ACTIONS(174), - [anon_sym_impl] = ACTIONS(177), - [anon_sym_let] = ACTIONS(180), - [anon_sym_loop] = ACTIONS(183), - [anon_sym_match] = ACTIONS(186), - [anon_sym_mod] = ACTIONS(189), - [anon_sym_pub] = ACTIONS(192), - [anon_sym_return] = ACTIONS(195), - [anon_sym_static] = ACTIONS(198), - [anon_sym_struct] = ACTIONS(201), - [anon_sym_trait] = ACTIONS(204), - [anon_sym_type] = ACTIONS(207), - [anon_sym_union] = ACTIONS(210), - [anon_sym_unsafe] = ACTIONS(213), - [anon_sym_use] = ACTIONS(216), - [anon_sym_while] = ACTIONS(219), - [anon_sym_POUND] = ACTIONS(222), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_extern] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(228), - [anon_sym_COLON_COLON] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(240), - [anon_sym_yield] = ACTIONS(243), - [anon_sym_move] = ACTIONS(246), - [sym_integer_literal] = ACTIONS(249), - [aux_sym_string_literal_token1] = ACTIONS(252), - [sym_char_literal] = ACTIONS(249), - [anon_sym_true] = ACTIONS(255), - [anon_sym_false] = ACTIONS(255), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(258), - [sym_super] = ACTIONS(261), - [sym_crate] = ACTIONS(264), - [sym_metavariable] = ACTIONS(267), - [sym_raw_string_literal] = ACTIONS(249), - [sym_float_literal] = ACTIONS(249), - [sym_block_comment] = ACTIONS(3), - }, - [11] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1239), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [12] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1285), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), + [sym__statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_macro_definition] = STATE(9), + [sym_attribute_item] = STATE(9), + [sym_inner_attribute_item] = STATE(9), + [sym_mod_item] = STATE(9), + [sym_foreign_mod_item] = STATE(9), + [sym_struct_item] = STATE(9), + [sym_union_item] = STATE(9), + [sym_enum_item] = STATE(9), + [sym_extern_crate_declaration] = STATE(9), + [sym_const_item] = STATE(9), + [sym_static_item] = STATE(9), + [sym_type_item] = STATE(9), + [sym_function_item] = STATE(9), + [sym_function_signature_item] = STATE(9), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(9), + [sym_trait_item] = STATE(9), + [sym_associated_type] = STATE(9), + [sym_let_declaration] = STATE(9), + [sym_use_declaration] = STATE(9), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1289), + [sym_macro_invocation] = STATE(135), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [13] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(188), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_macro_rules_BANG] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(132), - [anon_sym_LBRACE] = ACTIONS(135), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(138), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_u8] = ACTIONS(144), - [anon_sym_i8] = ACTIONS(144), - [anon_sym_u16] = ACTIONS(144), - [anon_sym_i16] = ACTIONS(144), - [anon_sym_u32] = ACTIONS(144), - [anon_sym_i32] = ACTIONS(144), - [anon_sym_u64] = ACTIONS(144), - [anon_sym_i64] = ACTIONS(144), - [anon_sym_u128] = ACTIONS(144), - [anon_sym_i128] = ACTIONS(144), - [anon_sym_isize] = ACTIONS(144), - [anon_sym_usize] = ACTIONS(144), - [anon_sym_f32] = ACTIONS(144), - [anon_sym_f64] = ACTIONS(144), - [anon_sym_bool] = ACTIONS(144), - [anon_sym_str] = ACTIONS(144), - [anon_sym_char] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_async] = ACTIONS(150), - [anon_sym_break] = ACTIONS(153), - [anon_sym_const] = ACTIONS(156), - [anon_sym_continue] = ACTIONS(159), - [anon_sym_default] = ACTIONS(162), - [anon_sym_enum] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(168), - [anon_sym_for] = ACTIONS(171), - [anon_sym_if] = ACTIONS(174), - [anon_sym_impl] = ACTIONS(177), - [anon_sym_let] = ACTIONS(180), - [anon_sym_loop] = ACTIONS(183), - [anon_sym_match] = ACTIONS(186), - [anon_sym_mod] = ACTIONS(189), - [anon_sym_pub] = ACTIONS(192), - [anon_sym_return] = ACTIONS(195), - [anon_sym_static] = ACTIONS(198), - [anon_sym_struct] = ACTIONS(201), - [anon_sym_trait] = ACTIONS(204), - [anon_sym_type] = ACTIONS(207), - [anon_sym_union] = ACTIONS(210), - [anon_sym_unsafe] = ACTIONS(213), - [anon_sym_use] = ACTIONS(216), - [anon_sym_while] = ACTIONS(219), - [anon_sym_POUND] = ACTIONS(222), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_extern] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(228), - [anon_sym_COLON_COLON] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(240), - [anon_sym_yield] = ACTIONS(243), - [anon_sym_move] = ACTIONS(246), - [sym_integer_literal] = ACTIONS(249), - [aux_sym_string_literal_token1] = ACTIONS(252), - [sym_char_literal] = ACTIONS(249), - [anon_sym_true] = ACTIONS(255), - [anon_sym_false] = ACTIONS(255), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(258), - [sym_super] = ACTIONS(261), - [sym_crate] = ACTIONS(264), - [sym_metavariable] = ACTIONS(267), - [sym_raw_string_literal] = ACTIONS(249), - [sym_float_literal] = ACTIONS(249), - [sym_block_comment] = ACTIONS(3), - }, - [14] = { - [sym__statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_macro_definition] = STATE(11), - [sym_attribute_item] = STATE(11), - [sym_inner_attribute_item] = STATE(11), - [sym_mod_item] = STATE(11), - [sym_foreign_mod_item] = STATE(11), - [sym_struct_item] = STATE(11), - [sym_union_item] = STATE(11), - [sym_enum_item] = STATE(11), - [sym_extern_crate_declaration] = STATE(11), - [sym_const_item] = STATE(11), - [sym_static_item] = STATE(11), - [sym_type_item] = STATE(11), - [sym_function_item] = STATE(11), - [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(11), - [sym_trait_item] = STATE(11), - [sym_associated_type] = STATE(11), - [sym_let_declaration] = STATE(11), - [sym_use_declaration] = STATE(11), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1229), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(274), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18247,80 +20372,527 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [15] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1273), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), + [11] = { + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1294), + [sym_macro_invocation] = STATE(135), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [12] = { + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1346), + [sym_macro_invocation] = STATE(135), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [ts_builtin_sym_end] = ACTIONS(125), + [sym_identifier] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_macro_rules_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(142), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_u8] = ACTIONS(148), + [anon_sym_i8] = ACTIONS(148), + [anon_sym_u16] = ACTIONS(148), + [anon_sym_i16] = ACTIONS(148), + [anon_sym_u32] = ACTIONS(148), + [anon_sym_i32] = ACTIONS(148), + [anon_sym_u64] = ACTIONS(148), + [anon_sym_i64] = ACTIONS(148), + [anon_sym_u128] = ACTIONS(148), + [anon_sym_i128] = ACTIONS(148), + [anon_sym_isize] = ACTIONS(148), + [anon_sym_usize] = ACTIONS(148), + [anon_sym_f32] = ACTIONS(148), + [anon_sym_f64] = ACTIONS(148), + [anon_sym_bool] = ACTIONS(148), + [anon_sym_str] = ACTIONS(148), + [anon_sym_char] = ACTIONS(148), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_async] = ACTIONS(154), + [anon_sym_break] = ACTIONS(157), + [anon_sym_const] = ACTIONS(160), + [anon_sym_continue] = ACTIONS(163), + [anon_sym_default] = ACTIONS(166), + [anon_sym_enum] = ACTIONS(169), + [anon_sym_fn] = ACTIONS(172), + [anon_sym_for] = ACTIONS(175), + [anon_sym_if] = ACTIONS(178), + [anon_sym_impl] = ACTIONS(181), + [anon_sym_let] = ACTIONS(184), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_match] = ACTIONS(190), + [anon_sym_mod] = ACTIONS(193), + [anon_sym_pub] = ACTIONS(196), + [anon_sym_return] = ACTIONS(199), + [anon_sym_static] = ACTIONS(202), + [anon_sym_struct] = ACTIONS(205), + [anon_sym_trait] = ACTIONS(208), + [anon_sym_type] = ACTIONS(211), + [anon_sym_union] = ACTIONS(214), + [anon_sym_unsafe] = ACTIONS(217), + [anon_sym_use] = ACTIONS(220), + [anon_sym_while] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(226), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(232), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(238), + [anon_sym_DOT_DOT] = ACTIONS(241), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(244), + [anon_sym_yield] = ACTIONS(247), + [anon_sym_move] = ACTIONS(250), + [sym_integer_literal] = ACTIONS(253), + [aux_sym_string_literal_token1] = ACTIONS(256), + [sym_char_literal] = ACTIONS(253), + [anon_sym_true] = ACTIONS(259), + [anon_sym_false] = ACTIONS(259), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(262), + [sym_super] = ACTIONS(265), + [sym_crate] = ACTIONS(268), + [sym_metavariable] = ACTIONS(271), + [sym_raw_string_literal] = ACTIONS(253), + [sym_float_literal] = ACTIONS(253), + [sym_block_comment] = ACTIONS(3), + }, + [13] = { + [sym__statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_macro_definition] = STATE(11), + [sym_attribute_item] = STATE(11), + [sym_inner_attribute_item] = STATE(11), + [sym_mod_item] = STATE(11), + [sym_foreign_mod_item] = STATE(11), + [sym_struct_item] = STATE(11), + [sym_union_item] = STATE(11), + [sym_enum_item] = STATE(11), + [sym_extern_crate_declaration] = STATE(11), + [sym_const_item] = STATE(11), + [sym_static_item] = STATE(11), + [sym_type_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(11), + [sym_trait_item] = STATE(11), + [sym_associated_type] = STATE(11), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1295), + [sym_macro_invocation] = STATE(135), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [14] = { + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(135), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18396,80 +20968,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [15] = { + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1346), + [sym_macro_invocation] = STATE(188), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_macro_rules_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(142), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_u8] = ACTIONS(148), + [anon_sym_i8] = ACTIONS(148), + [anon_sym_u16] = ACTIONS(148), + [anon_sym_i16] = ACTIONS(148), + [anon_sym_u32] = ACTIONS(148), + [anon_sym_i32] = ACTIONS(148), + [anon_sym_u64] = ACTIONS(148), + [anon_sym_i64] = ACTIONS(148), + [anon_sym_u128] = ACTIONS(148), + [anon_sym_i128] = ACTIONS(148), + [anon_sym_isize] = ACTIONS(148), + [anon_sym_usize] = ACTIONS(148), + [anon_sym_f32] = ACTIONS(148), + [anon_sym_f64] = ACTIONS(148), + [anon_sym_bool] = ACTIONS(148), + [anon_sym_str] = ACTIONS(148), + [anon_sym_char] = ACTIONS(148), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_async] = ACTIONS(154), + [anon_sym_break] = ACTIONS(157), + [anon_sym_const] = ACTIONS(160), + [anon_sym_continue] = ACTIONS(163), + [anon_sym_default] = ACTIONS(166), + [anon_sym_enum] = ACTIONS(169), + [anon_sym_fn] = ACTIONS(172), + [anon_sym_for] = ACTIONS(175), + [anon_sym_if] = ACTIONS(178), + [anon_sym_impl] = ACTIONS(181), + [anon_sym_let] = ACTIONS(184), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_match] = ACTIONS(190), + [anon_sym_mod] = ACTIONS(193), + [anon_sym_pub] = ACTIONS(196), + [anon_sym_return] = ACTIONS(199), + [anon_sym_static] = ACTIONS(202), + [anon_sym_struct] = ACTIONS(205), + [anon_sym_trait] = ACTIONS(208), + [anon_sym_type] = ACTIONS(211), + [anon_sym_union] = ACTIONS(214), + [anon_sym_unsafe] = ACTIONS(217), + [anon_sym_use] = ACTIONS(220), + [anon_sym_while] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(226), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(232), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(238), + [anon_sym_DOT_DOT] = ACTIONS(241), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(244), + [anon_sym_yield] = ACTIONS(247), + [anon_sym_move] = ACTIONS(250), + [sym_integer_literal] = ACTIONS(253), + [aux_sym_string_literal_token1] = ACTIONS(256), + [sym_char_literal] = ACTIONS(253), + [anon_sym_true] = ACTIONS(259), + [anon_sym_false] = ACTIONS(259), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(262), + [sym_super] = ACTIONS(265), + [sym_crate] = ACTIONS(268), + [sym_metavariable] = ACTIONS(271), + [sym_raw_string_literal] = ACTIONS(253), + [sym_float_literal] = ACTIONS(253), + [sym_block_comment] = ACTIONS(3), + }, [16] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2537), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1555), + [sym_visibility_modifier] = STATE(1384), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1303), + [sym_macro_invocation] = STATE(135), + [sym_scoped_identifier] = STATE(1210), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(75), + [sym_if_let_expression] = STATE(75), + [sym_match_expression] = STATE(75), + [sym_while_expression] = STATE(75), + [sym_while_let_expression] = STATE(75), + [sym_loop_expression] = STATE(75), + [sym_for_expression] = STATE(75), + [sym_const_block] = STATE(75), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_loop_label] = STATE(2531), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(75), + [sym_async_block] = STATE(75), + [sym_block] = STATE(75), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18546,52 +21267,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1162), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1192), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(282), @@ -18642,6 +21363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(282), [anon_sym_LT] = ACTIONS(288), [anon_sym_GT] = ACTIONS(288), + [anon_sym_else] = ACTIONS(288), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(288), [anon_sym_DOT_DOT_DOT] = ACTIONS(282), @@ -18688,55 +21410,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1169), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1118), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(310), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_RBRACE] = ACTIONS(310), @@ -18763,7 +21485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(314), + [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), @@ -18783,6 +21505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(310), [anon_sym_LT] = ACTIONS(312), [anon_sym_GT] = ACTIONS(312), + [anon_sym_else] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(312), [anon_sym_DOT_DOT_DOT] = ACTIONS(310), @@ -18829,64 +21552,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1172), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1173), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(316), + [anon_sym_SEMI] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_RPAREN] = ACTIONS(314), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(316), - [anon_sym_EQ_GT] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(316), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_EQ_GT] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_RBRACK] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(314), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -18904,8 +21627,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(318), + [anon_sym_SQUOTE] = ACTIONS(318), + [anon_sym_as] = ACTIONS(316), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -18920,41 +21643,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_else] = ACTIONS(316), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(316), - [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(316), - [anon_sym_BANG_EQ] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT] = ACTIONS(318), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(314), + [anon_sym_DASH_EQ] = ACTIONS(314), + [anon_sym_STAR_EQ] = ACTIONS(314), + [anon_sym_SLASH_EQ] = ACTIONS(314), + [anon_sym_PERCENT_EQ] = ACTIONS(314), + [anon_sym_AMP_EQ] = ACTIONS(314), + [anon_sym_PIPE_EQ] = ACTIONS(314), + [anon_sym_CARET_EQ] = ACTIONS(314), + [anon_sym_LT_LT_EQ] = ACTIONS(314), + [anon_sym_GT_GT_EQ] = ACTIONS(314), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(316), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18970,64 +21694,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1088), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1189), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(328), - [anon_sym_RPAREN] = ACTIONS(328), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(320), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(328), - [anon_sym_EQ_GT] = ACTIONS(328), - [anon_sym_LBRACK] = ACTIONS(328), - [anon_sym_RBRACK] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(330), - [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_EQ_GT] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(308), + [anon_sym_QMARK] = ACTIONS(320), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19046,7 +21770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(330), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19061,41 +21785,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(330), - [anon_sym_COMMA] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(330), - [anon_sym_GT] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_COMMA] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(324), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_else] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT] = ACTIONS(330), - [anon_sym_DOT_DOT_EQ] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), + [anon_sym_AMP] = ACTIONS(326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(328), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(328), - [anon_sym_BANG_EQ] = ACTIONS(328), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(330), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(330), - [anon_sym_PERCENT] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(328), - [anon_sym_DASH_EQ] = ACTIONS(328), - [anon_sym_STAR_EQ] = ACTIONS(328), - [anon_sym_SLASH_EQ] = ACTIONS(328), - [anon_sym_PERCENT_EQ] = ACTIONS(328), - [anon_sym_AMP_EQ] = ACTIONS(328), - [anon_sym_PIPE_EQ] = ACTIONS(328), - [anon_sym_CARET_EQ] = ACTIONS(328), - [anon_sym_LT_LT_EQ] = ACTIONS(328), - [anon_sym_GT_GT_EQ] = ACTIONS(328), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(330), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19111,64 +21836,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1088), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1118), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(328), + [anon_sym_SEMI] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_RPAREN] = ACTIONS(310), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(328), - [anon_sym_EQ_GT] = ACTIONS(328), - [anon_sym_LBRACK] = ACTIONS(328), - [anon_sym_RBRACK] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(330), - [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_EQ_GT] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_RBRACK] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19187,7 +21912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(330), + [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19202,41 +21927,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(330), - [anon_sym_COMMA] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(330), - [anon_sym_GT] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_LT] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(312), + [anon_sym_else] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT] = ACTIONS(330), - [anon_sym_DOT_DOT_EQ] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(328), - [anon_sym_BANG_EQ] = ACTIONS(328), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(330), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(330), - [anon_sym_PERCENT] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(328), - [anon_sym_DASH_EQ] = ACTIONS(328), - [anon_sym_STAR_EQ] = ACTIONS(328), - [anon_sym_SLASH_EQ] = ACTIONS(328), - [anon_sym_PERCENT_EQ] = ACTIONS(328), - [anon_sym_AMP_EQ] = ACTIONS(328), - [anon_sym_PIPE_EQ] = ACTIONS(328), - [anon_sym_CARET_EQ] = ACTIONS(328), - [anon_sym_LT_LT_EQ] = ACTIONS(328), - [anon_sym_GT_GT_EQ] = ACTIONS(328), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_EQ_EQ] = ACTIONS(310), + [anon_sym_BANG_EQ] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(312), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_PERCENT] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(310), + [anon_sym_DASH_EQ] = ACTIONS(310), + [anon_sym_STAR_EQ] = ACTIONS(310), + [anon_sym_SLASH_EQ] = ACTIONS(310), + [anon_sym_PERCENT_EQ] = ACTIONS(310), + [anon_sym_AMP_EQ] = ACTIONS(310), + [anon_sym_PIPE_EQ] = ACTIONS(310), + [anon_sym_CARET_EQ] = ACTIONS(310), + [anon_sym_LT_LT_EQ] = ACTIONS(310), + [anon_sym_GT_GT_EQ] = ACTIONS(310), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(330), + [anon_sym_DOT] = ACTIONS(312), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19252,52 +21978,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1184), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(332), [anon_sym_LPAREN] = ACTIONS(13), @@ -19305,10 +22031,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_RBRACE] = ACTIONS(332), [anon_sym_EQ_GT] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(332), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(332), [anon_sym_PLUS] = ACTIONS(334), - [anon_sym_STAR] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(308), [anon_sym_QMARK] = ACTIONS(332), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -19345,17 +22071,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(308), [anon_sym_EQ] = ACTIONS(334), [anon_sym_COMMA] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(334), + [anon_sym_LT] = ACTIONS(324), [anon_sym_GT] = ACTIONS(334), + [anon_sym_else] = ACTIONS(334), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(334), + [anon_sym_AMP] = ACTIONS(326), [anon_sym_DOT_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), + [anon_sym_DOT_DOT] = ACTIONS(328), [anon_sym_DOT_DOT_EQ] = ACTIONS(332), - [anon_sym_DASH] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_AMP_AMP] = ACTIONS(332), [anon_sym_PIPE_PIPE] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(330), [anon_sym_CARET] = ACTIONS(334), [anon_sym_EQ_EQ] = ACTIONS(332), [anon_sym_BANG_EQ] = ACTIONS(332), @@ -19393,64 +22120,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1043), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(332), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_RPAREN] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(336), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(336), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(332), - [anon_sym_EQ_GT] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(332), - [anon_sym_RBRACK] = ACTIONS(332), - [anon_sym_PLUS] = ACTIONS(334), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_QMARK] = ACTIONS(332), + [anon_sym_RBRACE] = ACTIONS(336), + [anon_sym_EQ_GT] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_RBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19469,7 +22196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(334), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19484,41 +22211,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_COMMA] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_GT] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_COMMA] = ACTIONS(336), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(338), + [anon_sym_else] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(332), - [anon_sym_DASH] = ACTIONS(334), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_PIPE_PIPE] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(332), - [anon_sym_BANG_EQ] = ACTIONS(332), - [anon_sym_LT_EQ] = ACTIONS(332), - [anon_sym_GT_EQ] = ACTIONS(332), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_PERCENT] = ACTIONS(334), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [anon_sym_DASH_EQ] = ACTIONS(332), - [anon_sym_STAR_EQ] = ACTIONS(332), - [anon_sym_SLASH_EQ] = ACTIONS(332), - [anon_sym_PERCENT_EQ] = ACTIONS(332), - [anon_sym_AMP_EQ] = ACTIONS(332), - [anon_sym_PIPE_EQ] = ACTIONS(332), - [anon_sym_CARET_EQ] = ACTIONS(332), - [anon_sym_LT_LT_EQ] = ACTIONS(332), - [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(334), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19534,63 +22262,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1178), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1043), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(336), [anon_sym_RPAREN] = ACTIONS(336), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_RBRACE] = ACTIONS(336), [anon_sym_EQ_GT] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(336), [anon_sym_RBRACK] = ACTIONS(336), [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(338), [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -19627,17 +22355,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(308), [anon_sym_EQ] = ACTIONS(338), [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(338), [anon_sym_GT] = ACTIONS(338), + [anon_sym_else] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(322), + [anon_sym_AMP] = ACTIONS(338), [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(324), + [anon_sym_DOT_DOT] = ACTIONS(338), [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_DASH] = ACTIONS(338), [anon_sym_AMP_AMP] = ACTIONS(336), [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(326), + [anon_sym_PIPE] = ACTIONS(338), [anon_sym_CARET] = ACTIONS(338), [anon_sym_EQ_EQ] = ACTIONS(336), [anon_sym_BANG_EQ] = ACTIONS(336), @@ -19675,52 +22404,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1296), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_LBRACE] = ACTIONS(282), @@ -19811,59 +22540,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1088), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1043), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(328), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LBRACK] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(330), - [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -19882,7 +22611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(330), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -19897,40 +22626,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(330), - [anon_sym_LT] = ACTIONS(330), - [anon_sym_GT] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT] = ACTIONS(330), - [anon_sym_DOT_DOT_EQ] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(328), - [anon_sym_BANG_EQ] = ACTIONS(328), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(330), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(330), - [anon_sym_PERCENT] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(328), - [anon_sym_DASH_EQ] = ACTIONS(328), - [anon_sym_STAR_EQ] = ACTIONS(328), - [anon_sym_SLASH_EQ] = ACTIONS(328), - [anon_sym_PERCENT_EQ] = ACTIONS(328), - [anon_sym_AMP_EQ] = ACTIONS(328), - [anon_sym_PIPE_EQ] = ACTIONS(328), - [anon_sym_CARET_EQ] = ACTIONS(328), - [anon_sym_LT_LT_EQ] = ACTIONS(328), - [anon_sym_GT_GT_EQ] = ACTIONS(328), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(330), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19946,59 +22675,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1118), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(332), - [anon_sym_PLUS] = ACTIONS(334), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_QMARK] = ACTIONS(332), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20017,7 +22746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(334), + [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20032,40 +22761,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_GT] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(332), - [anon_sym_DASH] = ACTIONS(334), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_PIPE_PIPE] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(332), - [anon_sym_BANG_EQ] = ACTIONS(332), - [anon_sym_LT_EQ] = ACTIONS(332), - [anon_sym_GT_EQ] = ACTIONS(332), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_PERCENT] = ACTIONS(334), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [anon_sym_DASH_EQ] = ACTIONS(332), - [anon_sym_STAR_EQ] = ACTIONS(332), - [anon_sym_SLASH_EQ] = ACTIONS(332), - [anon_sym_PERCENT_EQ] = ACTIONS(332), - [anon_sym_AMP_EQ] = ACTIONS(332), - [anon_sym_PIPE_EQ] = ACTIONS(332), - [anon_sym_CARET_EQ] = ACTIONS(332), - [anon_sym_LT_LT_EQ] = ACTIONS(332), - [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_EQ_EQ] = ACTIONS(310), + [anon_sym_BANG_EQ] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(312), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_PERCENT] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(310), + [anon_sym_DASH_EQ] = ACTIONS(310), + [anon_sym_STAR_EQ] = ACTIONS(310), + [anon_sym_SLASH_EQ] = ACTIONS(310), + [anon_sym_PERCENT_EQ] = ACTIONS(310), + [anon_sym_AMP_EQ] = ACTIONS(310), + [anon_sym_PIPE_EQ] = ACTIONS(310), + [anon_sym_CARET_EQ] = ACTIONS(310), + [anon_sym_LT_LT_EQ] = ACTIONS(310), + [anon_sym_GT_GT_EQ] = ACTIONS(310), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(334), + [anon_sym_DOT] = ACTIONS(312), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20081,59 +22810,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1238), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1043), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20152,7 +22881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(318), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20167,40 +22896,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(318), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(316), - [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(316), - [anon_sym_BANG_EQ] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT] = ACTIONS(318), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20216,59 +22945,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1231), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1304), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(25), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(310), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(332), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20286,8 +23015,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(314), - [anon_sym_as] = ACTIONS(312), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(334), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20302,40 +23031,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(312), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_LT] = ACTIONS(324), + [anon_sym_GT] = ACTIONS(334), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(332), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(332), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_CARET] = ACTIONS(334), + [anon_sym_EQ_EQ] = ACTIONS(332), + [anon_sym_BANG_EQ] = ACTIONS(332), + [anon_sym_LT_EQ] = ACTIONS(332), + [anon_sym_GT_EQ] = ACTIONS(332), + [anon_sym_LT_LT] = ACTIONS(334), + [anon_sym_GT_GT] = ACTIONS(334), + [anon_sym_SLASH] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_PLUS_EQ] = ACTIONS(332), + [anon_sym_DASH_EQ] = ACTIONS(332), + [anon_sym_STAR_EQ] = ACTIONS(332), + [anon_sym_SLASH_EQ] = ACTIONS(332), + [anon_sym_PERCENT_EQ] = ACTIONS(332), + [anon_sym_AMP_EQ] = ACTIONS(332), + [anon_sym_PIPE_EQ] = ACTIONS(332), + [anon_sym_CARET_EQ] = ACTIONS(332), + [anon_sym_LT_LT_EQ] = ACTIONS(332), + [anon_sym_GT_GT_EQ] = ACTIONS(332), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(334), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20351,59 +23080,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1319), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(25), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(332), - [anon_sym_PLUS] = ACTIONS(334), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_QMARK] = ACTIONS(332), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(314), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20421,8 +23150,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(334), + [anon_sym_SQUOTE] = ACTIONS(318), + [anon_sym_as] = ACTIONS(316), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20437,40 +23166,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_GT] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(316), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(332), - [anon_sym_DASH] = ACTIONS(334), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_PIPE_PIPE] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(332), - [anon_sym_BANG_EQ] = ACTIONS(332), - [anon_sym_LT_EQ] = ACTIONS(332), - [anon_sym_GT_EQ] = ACTIONS(332), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_PERCENT] = ACTIONS(334), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [anon_sym_DASH_EQ] = ACTIONS(332), - [anon_sym_STAR_EQ] = ACTIONS(332), - [anon_sym_SLASH_EQ] = ACTIONS(332), - [anon_sym_PERCENT_EQ] = ACTIONS(332), - [anon_sym_AMP_EQ] = ACTIONS(332), - [anon_sym_PIPE_EQ] = ACTIONS(332), - [anon_sym_CARET_EQ] = ACTIONS(332), - [anon_sym_LT_LT_EQ] = ACTIONS(332), - [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(314), + [anon_sym_DASH_EQ] = ACTIONS(314), + [anon_sym_STAR_EQ] = ACTIONS(314), + [anon_sym_SLASH_EQ] = ACTIONS(314), + [anon_sym_PERCENT_EQ] = ACTIONS(314), + [anon_sym_AMP_EQ] = ACTIONS(314), + [anon_sym_PIPE_EQ] = ACTIONS(314), + [anon_sym_CARET_EQ] = ACTIONS(314), + [anon_sym_LT_LT_EQ] = ACTIONS(314), + [anon_sym_GT_GT_EQ] = ACTIONS(314), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(334), + [anon_sym_DOT] = ACTIONS(316), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20486,59 +23215,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1088), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1315), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LBRACK] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(330), - [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(320), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20557,7 +23286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(330), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20572,40 +23301,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(330), - [anon_sym_LT] = ACTIONS(330), - [anon_sym_GT] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(324), + [anon_sym_GT] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT] = ACTIONS(330), - [anon_sym_DOT_DOT_EQ] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), + [anon_sym_AMP] = ACTIONS(364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(328), - [anon_sym_BANG_EQ] = ACTIONS(328), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(330), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(330), - [anon_sym_PERCENT] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(328), - [anon_sym_DASH_EQ] = ACTIONS(328), - [anon_sym_STAR_EQ] = ACTIONS(328), - [anon_sym_SLASH_EQ] = ACTIONS(328), - [anon_sym_PERCENT_EQ] = ACTIONS(328), - [anon_sym_AMP_EQ] = ACTIONS(328), - [anon_sym_PIPE_EQ] = ACTIONS(328), - [anon_sym_CARET_EQ] = ACTIONS(328), - [anon_sym_LT_LT_EQ] = ACTIONS(328), - [anon_sym_GT_GT_EQ] = ACTIONS(328), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(330), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20621,59 +23350,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1118), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20692,7 +23421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), + [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20707,40 +23436,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_EQ_EQ] = ACTIONS(310), + [anon_sym_BANG_EQ] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(312), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_PERCENT] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(310), + [anon_sym_DASH_EQ] = ACTIONS(310), + [anon_sym_STAR_EQ] = ACTIONS(310), + [anon_sym_SLASH_EQ] = ACTIONS(310), + [anon_sym_PERCENT_EQ] = ACTIONS(310), + [anon_sym_AMP_EQ] = ACTIONS(310), + [anon_sym_PIPE_EQ] = ACTIONS(310), + [anon_sym_CARET_EQ] = ACTIONS(310), + [anon_sym_LT_LT_EQ] = ACTIONS(310), + [anon_sym_GT_GT_EQ] = ACTIONS(310), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(312), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20756,59 +23485,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_attribute_item] = STATE(640), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(801), + [sym_attribute_item] = STATE(43), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(640), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(368), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -20867,54 +23596,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_attribute_item] = STATE(33), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(801), + [sym_attribute_item] = STATE(35), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(33), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_enum_variant_list_repeat1] = STATE(35), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20978,59 +23707,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(801), + [sym_attribute_item] = STATE(649), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_enum_variant_list_repeat1] = STATE(649), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(378), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(378), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -21090,52 +23819,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [36] = { [sym_attribute_item] = STATE(41), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [aux_sym_enum_variant_list_repeat1] = STATE(41), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), @@ -21199,54 +23928,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(801), + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1264), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(40), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_enum_variant_list_repeat1] = STATE(42), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(384), @@ -21309,54 +24038,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(801), + [sym_attribute_item] = STATE(41), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(40), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_enum_variant_list_repeat1] = STATE(41), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(386), @@ -21419,54 +24148,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(801), + [sym_attribute_item] = STATE(41), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(40), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_enum_variant_list_repeat1] = STATE(41), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(388), @@ -21529,54 +24258,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym_attribute_item] = STATE(640), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1271), - [sym_macro_invocation] = STATE(801), + [sym_attribute_item] = STATE(41), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(640), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_enum_variant_list_repeat1] = STATE(41), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21638,54 +24367,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym_attribute_item] = STATE(640), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1306), - [sym_macro_invocation] = STATE(801), + [sym_attribute_item] = STATE(649), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1283), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(640), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_enum_variant_list_repeat1] = STATE(649), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21747,54 +24476,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(801), + [sym_attribute_item] = STATE(649), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1330), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(40), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_enum_variant_list_repeat1] = STATE(649), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21856,54 +24585,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym_attribute_item] = STATE(640), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(801), + [sym_attribute_item] = STATE(649), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(640), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_enum_variant_list_repeat1] = STATE(649), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21965,53 +24694,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_tuple_expression_repeat1] = STATE(47), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_tuple_expression_repeat1] = STATE(45), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(390), @@ -22073,164 +24802,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [45] = { - [sym_else_clause] = STATE(86), - [ts_builtin_sym_end] = ACTIONS(392), - [sym_identifier] = ACTIONS(394), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_macro_rules_BANG] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_isize] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_f32] = ACTIONS(394), - [anon_sym_f64] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_str] = ACTIONS(394), - [anon_sym_char] = ACTIONS(394), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_as] = ACTIONS(394), - [anon_sym_async] = ACTIONS(394), - [anon_sym_break] = ACTIONS(394), - [anon_sym_const] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(394), - [anon_sym_default] = ACTIONS(394), - [anon_sym_enum] = ACTIONS(394), - [anon_sym_fn] = ACTIONS(394), - [anon_sym_for] = ACTIONS(394), - [anon_sym_if] = ACTIONS(394), - [anon_sym_impl] = ACTIONS(394), - [anon_sym_let] = ACTIONS(394), - [anon_sym_loop] = ACTIONS(394), - [anon_sym_match] = ACTIONS(394), - [anon_sym_mod] = ACTIONS(394), - [anon_sym_pub] = ACTIONS(394), - [anon_sym_return] = ACTIONS(394), - [anon_sym_static] = ACTIONS(394), - [anon_sym_struct] = ACTIONS(394), - [anon_sym_trait] = ACTIONS(394), - [anon_sym_type] = ACTIONS(394), - [anon_sym_union] = ACTIONS(394), - [anon_sym_unsafe] = ACTIONS(394), - [anon_sym_use] = ACTIONS(394), - [anon_sym_while] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_extern] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_yield] = ACTIONS(394), - [anon_sym_else] = ACTIONS(396), - [anon_sym_move] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(394), - [sym_integer_literal] = ACTIONS(392), - [aux_sym_string_literal_token1] = ACTIONS(392), - [sym_char_literal] = ACTIONS(392), - [anon_sym_true] = ACTIONS(394), - [anon_sym_false] = ACTIONS(394), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(394), - [sym_super] = ACTIONS(394), - [sym_crate] = ACTIONS(394), - [sym_metavariable] = ACTIONS(392), - [sym_raw_string_literal] = ACTIONS(392), - [sym_float_literal] = ACTIONS(392), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1349), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_tuple_expression_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(406), + [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_SQUOTE] = ACTIONS(412), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(418), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(424), + [anon_sym_default] = ACTIONS(427), + [anon_sym_for] = ACTIONS(430), + [anon_sym_if] = ACTIONS(433), + [anon_sym_loop] = ACTIONS(436), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(442), + [anon_sym_union] = ACTIONS(427), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_COLON_COLON] = ACTIONS(454), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_DOT_DOT] = ACTIONS(460), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(466), + [anon_sym_move] = ACTIONS(469), + [sym_integer_literal] = ACTIONS(472), + [aux_sym_string_literal_token1] = ACTIONS(475), + [sym_char_literal] = ACTIONS(472), + [anon_sym_true] = ACTIONS(478), + [anon_sym_false] = ACTIONS(478), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(481), + [sym_super] = ACTIONS(484), + [sym_crate] = ACTIONS(484), + [sym_metavariable] = ACTIONS(487), + [sym_raw_string_literal] = ACTIONS(472), + [sym_float_literal] = ACTIONS(472), [sym_block_comment] = ACTIONS(3), }, [46] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(801), + [sym_else_clause] = STATE(131), + [ts_builtin_sym_end] = ACTIONS(490), + [sym_identifier] = ACTIONS(492), + [anon_sym_SEMI] = ACTIONS(490), + [anon_sym_macro_rules_BANG] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(490), + [anon_sym_u8] = ACTIONS(492), + [anon_sym_i8] = ACTIONS(492), + [anon_sym_u16] = ACTIONS(492), + [anon_sym_i16] = ACTIONS(492), + [anon_sym_u32] = ACTIONS(492), + [anon_sym_i32] = ACTIONS(492), + [anon_sym_u64] = ACTIONS(492), + [anon_sym_i64] = ACTIONS(492), + [anon_sym_u128] = ACTIONS(492), + [anon_sym_i128] = ACTIONS(492), + [anon_sym_isize] = ACTIONS(492), + [anon_sym_usize] = ACTIONS(492), + [anon_sym_f32] = ACTIONS(492), + [anon_sym_f64] = ACTIONS(492), + [anon_sym_bool] = ACTIONS(492), + [anon_sym_str] = ACTIONS(492), + [anon_sym_char] = ACTIONS(492), + [anon_sym_SQUOTE] = ACTIONS(492), + [anon_sym_as] = ACTIONS(492), + [anon_sym_async] = ACTIONS(492), + [anon_sym_break] = ACTIONS(492), + [anon_sym_const] = ACTIONS(492), + [anon_sym_continue] = ACTIONS(492), + [anon_sym_default] = ACTIONS(492), + [anon_sym_enum] = ACTIONS(492), + [anon_sym_fn] = ACTIONS(492), + [anon_sym_for] = ACTIONS(492), + [anon_sym_if] = ACTIONS(492), + [anon_sym_impl] = ACTIONS(492), + [anon_sym_let] = ACTIONS(492), + [anon_sym_loop] = ACTIONS(492), + [anon_sym_match] = ACTIONS(492), + [anon_sym_mod] = ACTIONS(492), + [anon_sym_pub] = ACTIONS(492), + [anon_sym_return] = ACTIONS(492), + [anon_sym_static] = ACTIONS(492), + [anon_sym_struct] = ACTIONS(492), + [anon_sym_trait] = ACTIONS(492), + [anon_sym_type] = ACTIONS(492), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(492), + [anon_sym_use] = ACTIONS(492), + [anon_sym_while] = ACTIONS(492), + [anon_sym_POUND] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_extern] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_else] = ACTIONS(494), + [anon_sym_COLON_COLON] = ACTIONS(490), + [anon_sym_AMP] = ACTIONS(492), + [anon_sym_DOT_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT_DOT] = ACTIONS(492), + [anon_sym_DOT_DOT_EQ] = ACTIONS(490), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_AMP_AMP] = ACTIONS(490), + [anon_sym_PIPE_PIPE] = ACTIONS(490), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_EQ_EQ] = ACTIONS(490), + [anon_sym_BANG_EQ] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(492), + [anon_sym_GT_GT] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(492), + [anon_sym_PLUS_EQ] = ACTIONS(490), + [anon_sym_DASH_EQ] = ACTIONS(490), + [anon_sym_STAR_EQ] = ACTIONS(490), + [anon_sym_SLASH_EQ] = ACTIONS(490), + [anon_sym_PERCENT_EQ] = ACTIONS(490), + [anon_sym_AMP_EQ] = ACTIONS(490), + [anon_sym_PIPE_EQ] = ACTIONS(490), + [anon_sym_CARET_EQ] = ACTIONS(490), + [anon_sym_LT_LT_EQ] = ACTIONS(490), + [anon_sym_GT_GT_EQ] = ACTIONS(490), + [anon_sym_yield] = ACTIONS(492), + [anon_sym_move] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(492), + [sym_integer_literal] = ACTIONS(490), + [aux_sym_string_literal_token1] = ACTIONS(490), + [sym_char_literal] = ACTIONS(490), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(492), + [sym_super] = ACTIONS(492), + [sym_crate] = ACTIONS(492), + [sym_metavariable] = ACTIONS(490), + [sym_raw_string_literal] = ACTIONS(490), + [sym_float_literal] = ACTIONS(490), + [sym_block_comment] = ACTIONS(3), + }, + [47] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_tuple_expression_repeat1] = STATE(49), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_tuple_expression_repeat1] = STATE(44), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(398), + [anon_sym_RPAREN] = ACTIONS(496), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -22288,57 +25125,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [47] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(801), + [48] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_tuple_expression_repeat1] = STATE(49), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_tuple_expression_repeat1] = STATE(50), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(400), + [anon_sym_RPAREN] = ACTIONS(390), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -22396,57 +25233,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [48] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(801), + [49] = { + [sym_else_clause] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(498), + [sym_identifier] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_macro_rules_BANG] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_u8] = ACTIONS(500), + [anon_sym_i8] = ACTIONS(500), + [anon_sym_u16] = ACTIONS(500), + [anon_sym_i16] = ACTIONS(500), + [anon_sym_u32] = ACTIONS(500), + [anon_sym_i32] = ACTIONS(500), + [anon_sym_u64] = ACTIONS(500), + [anon_sym_i64] = ACTIONS(500), + [anon_sym_u128] = ACTIONS(500), + [anon_sym_i128] = ACTIONS(500), + [anon_sym_isize] = ACTIONS(500), + [anon_sym_usize] = ACTIONS(500), + [anon_sym_f32] = ACTIONS(500), + [anon_sym_f64] = ACTIONS(500), + [anon_sym_bool] = ACTIONS(500), + [anon_sym_str] = ACTIONS(500), + [anon_sym_char] = ACTIONS(500), + [anon_sym_SQUOTE] = ACTIONS(500), + [anon_sym_as] = ACTIONS(500), + [anon_sym_async] = ACTIONS(500), + [anon_sym_break] = ACTIONS(500), + [anon_sym_const] = ACTIONS(500), + [anon_sym_continue] = ACTIONS(500), + [anon_sym_default] = ACTIONS(500), + [anon_sym_enum] = ACTIONS(500), + [anon_sym_fn] = ACTIONS(500), + [anon_sym_for] = ACTIONS(500), + [anon_sym_if] = ACTIONS(500), + [anon_sym_impl] = ACTIONS(500), + [anon_sym_let] = ACTIONS(500), + [anon_sym_loop] = ACTIONS(500), + [anon_sym_match] = ACTIONS(500), + [anon_sym_mod] = ACTIONS(500), + [anon_sym_pub] = ACTIONS(500), + [anon_sym_return] = ACTIONS(500), + [anon_sym_static] = ACTIONS(500), + [anon_sym_struct] = ACTIONS(500), + [anon_sym_trait] = ACTIONS(500), + [anon_sym_type] = ACTIONS(500), + [anon_sym_union] = ACTIONS(500), + [anon_sym_unsafe] = ACTIONS(500), + [anon_sym_use] = ACTIONS(500), + [anon_sym_while] = ACTIONS(500), + [anon_sym_POUND] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_extern] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_else] = ACTIONS(494), + [anon_sym_COLON_COLON] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(498), + [anon_sym_DOT_DOT] = ACTIONS(500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(498), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_AMP_AMP] = ACTIONS(498), + [anon_sym_PIPE_PIPE] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_CARET] = ACTIONS(500), + [anon_sym_EQ_EQ] = ACTIONS(498), + [anon_sym_BANG_EQ] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_GT_GT] = ACTIONS(500), + [anon_sym_SLASH] = ACTIONS(500), + [anon_sym_PERCENT] = ACTIONS(500), + [anon_sym_PLUS_EQ] = ACTIONS(498), + [anon_sym_DASH_EQ] = ACTIONS(498), + [anon_sym_STAR_EQ] = ACTIONS(498), + [anon_sym_SLASH_EQ] = ACTIONS(498), + [anon_sym_PERCENT_EQ] = ACTIONS(498), + [anon_sym_AMP_EQ] = ACTIONS(498), + [anon_sym_PIPE_EQ] = ACTIONS(498), + [anon_sym_CARET_EQ] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(498), + [anon_sym_GT_GT_EQ] = ACTIONS(498), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(500), + [anon_sym_DOT] = ACTIONS(500), + [sym_integer_literal] = ACTIONS(498), + [aux_sym_string_literal_token1] = ACTIONS(498), + [sym_char_literal] = ACTIONS(498), + [anon_sym_true] = ACTIONS(500), + [anon_sym_false] = ACTIONS(500), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(500), + [sym_super] = ACTIONS(500), + [sym_crate] = ACTIONS(500), + [sym_metavariable] = ACTIONS(498), + [sym_raw_string_literal] = ACTIONS(498), + [sym_float_literal] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + }, + [50] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1275), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_tuple_expression_repeat1] = STATE(46), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [aux_sym_tuple_expression_repeat1] = STATE(45), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(400), + [anon_sym_RPAREN] = ACTIONS(502), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -22504,381 +25449,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [49] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1310), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_tuple_expression_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(402), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_RPAREN] = ACTIONS(408), - [anon_sym_LBRACE] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(413), - [anon_sym_STAR] = ACTIONS(416), - [anon_sym_u8] = ACTIONS(419), - [anon_sym_i8] = ACTIONS(419), - [anon_sym_u16] = ACTIONS(419), - [anon_sym_i16] = ACTIONS(419), - [anon_sym_u32] = ACTIONS(419), - [anon_sym_i32] = ACTIONS(419), - [anon_sym_u64] = ACTIONS(419), - [anon_sym_i64] = ACTIONS(419), - [anon_sym_u128] = ACTIONS(419), - [anon_sym_i128] = ACTIONS(419), - [anon_sym_isize] = ACTIONS(419), - [anon_sym_usize] = ACTIONS(419), - [anon_sym_f32] = ACTIONS(419), - [anon_sym_f64] = ACTIONS(419), - [anon_sym_bool] = ACTIONS(419), - [anon_sym_str] = ACTIONS(419), - [anon_sym_char] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(422), - [anon_sym_async] = ACTIONS(425), - [anon_sym_break] = ACTIONS(428), - [anon_sym_const] = ACTIONS(431), - [anon_sym_continue] = ACTIONS(434), - [anon_sym_default] = ACTIONS(437), - [anon_sym_for] = ACTIONS(440), - [anon_sym_if] = ACTIONS(443), - [anon_sym_loop] = ACTIONS(446), - [anon_sym_match] = ACTIONS(449), - [anon_sym_return] = ACTIONS(452), - [anon_sym_union] = ACTIONS(437), - [anon_sym_unsafe] = ACTIONS(455), - [anon_sym_while] = ACTIONS(458), - [anon_sym_BANG] = ACTIONS(416), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_COLON_COLON] = ACTIONS(464), - [anon_sym_AMP] = ACTIONS(467), - [anon_sym_DOT_DOT] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(416), - [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_yield] = ACTIONS(476), - [anon_sym_move] = ACTIONS(479), - [sym_integer_literal] = ACTIONS(482), - [aux_sym_string_literal_token1] = ACTIONS(485), - [sym_char_literal] = ACTIONS(482), - [anon_sym_true] = ACTIONS(488), - [anon_sym_false] = ACTIONS(488), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(491), - [sym_super] = ACTIONS(494), - [sym_crate] = ACTIONS(494), - [sym_metavariable] = ACTIONS(497), - [sym_raw_string_literal] = ACTIONS(482), - [sym_float_literal] = ACTIONS(482), - [sym_block_comment] = ACTIONS(3), - }, - [50] = { - [sym_else_clause] = STATE(166), - [ts_builtin_sym_end] = ACTIONS(500), - [sym_identifier] = ACTIONS(502), - [anon_sym_SEMI] = ACTIONS(500), - [anon_sym_macro_rules_BANG] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACE] = ACTIONS(500), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(502), - [anon_sym_QMARK] = ACTIONS(500), - [anon_sym_u8] = ACTIONS(502), - [anon_sym_i8] = ACTIONS(502), - [anon_sym_u16] = ACTIONS(502), - [anon_sym_i16] = ACTIONS(502), - [anon_sym_u32] = ACTIONS(502), - [anon_sym_i32] = ACTIONS(502), - [anon_sym_u64] = ACTIONS(502), - [anon_sym_i64] = ACTIONS(502), - [anon_sym_u128] = ACTIONS(502), - [anon_sym_i128] = ACTIONS(502), - [anon_sym_isize] = ACTIONS(502), - [anon_sym_usize] = ACTIONS(502), - [anon_sym_f32] = ACTIONS(502), - [anon_sym_f64] = ACTIONS(502), - [anon_sym_bool] = ACTIONS(502), - [anon_sym_str] = ACTIONS(502), - [anon_sym_char] = ACTIONS(502), - [anon_sym_SQUOTE] = ACTIONS(502), - [anon_sym_as] = ACTIONS(502), - [anon_sym_async] = ACTIONS(502), - [anon_sym_break] = ACTIONS(502), - [anon_sym_const] = ACTIONS(502), - [anon_sym_continue] = ACTIONS(502), - [anon_sym_default] = ACTIONS(502), - [anon_sym_enum] = ACTIONS(502), - [anon_sym_fn] = ACTIONS(502), - [anon_sym_for] = ACTIONS(502), - [anon_sym_if] = ACTIONS(502), - [anon_sym_impl] = ACTIONS(502), - [anon_sym_let] = ACTIONS(502), - [anon_sym_loop] = ACTIONS(502), - [anon_sym_match] = ACTIONS(502), - [anon_sym_mod] = ACTIONS(502), - [anon_sym_pub] = ACTIONS(502), - [anon_sym_return] = ACTIONS(502), - [anon_sym_static] = ACTIONS(502), - [anon_sym_struct] = ACTIONS(502), - [anon_sym_trait] = ACTIONS(502), - [anon_sym_type] = ACTIONS(502), - [anon_sym_union] = ACTIONS(502), - [anon_sym_unsafe] = ACTIONS(502), - [anon_sym_use] = ACTIONS(502), - [anon_sym_while] = ACTIONS(502), - [anon_sym_POUND] = ACTIONS(500), - [anon_sym_BANG] = ACTIONS(502), - [anon_sym_EQ] = ACTIONS(502), - [anon_sym_extern] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(502), - [anon_sym_GT] = ACTIONS(502), - [anon_sym_COLON_COLON] = ACTIONS(500), - [anon_sym_AMP] = ACTIONS(502), - [anon_sym_DOT_DOT_DOT] = ACTIONS(500), - [anon_sym_DOT_DOT] = ACTIONS(502), - [anon_sym_DOT_DOT_EQ] = ACTIONS(500), - [anon_sym_DASH] = ACTIONS(502), - [anon_sym_AMP_AMP] = ACTIONS(500), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_PIPE] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_EQ_EQ] = ACTIONS(500), - [anon_sym_BANG_EQ] = ACTIONS(500), - [anon_sym_LT_EQ] = ACTIONS(500), - [anon_sym_GT_EQ] = ACTIONS(500), - [anon_sym_LT_LT] = ACTIONS(502), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_SLASH] = ACTIONS(502), - [anon_sym_PERCENT] = ACTIONS(502), - [anon_sym_PLUS_EQ] = ACTIONS(500), - [anon_sym_DASH_EQ] = ACTIONS(500), - [anon_sym_STAR_EQ] = ACTIONS(500), - [anon_sym_SLASH_EQ] = ACTIONS(500), - [anon_sym_PERCENT_EQ] = ACTIONS(500), - [anon_sym_AMP_EQ] = ACTIONS(500), - [anon_sym_PIPE_EQ] = ACTIONS(500), - [anon_sym_CARET_EQ] = ACTIONS(500), - [anon_sym_LT_LT_EQ] = ACTIONS(500), - [anon_sym_GT_GT_EQ] = ACTIONS(500), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_else] = ACTIONS(396), - [anon_sym_move] = ACTIONS(502), - [anon_sym_DOT] = ACTIONS(502), - [sym_integer_literal] = ACTIONS(500), - [aux_sym_string_literal_token1] = ACTIONS(500), - [sym_char_literal] = ACTIONS(500), - [anon_sym_true] = ACTIONS(502), - [anon_sym_false] = ACTIONS(502), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(502), - [sym_super] = ACTIONS(502), - [sym_crate] = ACTIONS(502), - [sym_metavariable] = ACTIONS(500), - [sym_raw_string_literal] = ACTIONS(500), - [sym_float_literal] = ACTIONS(500), - [sym_block_comment] = ACTIONS(3), - }, [51] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(506), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [52] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(512), + [anon_sym_RBRACK] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -22934,165 +25556,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [53] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1256), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(514), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [54] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1261), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [52] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23118,19 +25633,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(516), + [anon_sym_let] = ACTIONS(508), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23148,58 +25663,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [55] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1220), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [53] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23225,19 +25740,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(518), + [anon_sym_let] = ACTIONS(514), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23255,58 +25770,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [56] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1276), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [54] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1171), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [55] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23339,12 +25961,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23362,53 +25984,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [57] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(801), + [56] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23469,58 +26091,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [58] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1237), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [57] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1308), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23552,13 +26174,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(510), [sym_mutable_specifier] = ACTIONS(524), [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23576,165 +26198,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [59] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1236), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [58] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_RBRACK] = ACTIONS(528), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(528), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [60] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1249), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [59] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1250), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23767,12 +26389,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23790,58 +26412,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [61] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1252), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [60] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23874,12 +26496,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23897,58 +26519,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [62] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1289), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [61] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1313), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23981,12 +26603,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -24004,53 +26626,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [62] = { + [ts_builtin_sym_end] = ACTIONS(536), + [sym_identifier] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_macro_rules_BANG] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_PLUS] = ACTIONS(538), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_QMARK] = ACTIONS(536), + [anon_sym_u8] = ACTIONS(538), + [anon_sym_i8] = ACTIONS(538), + [anon_sym_u16] = ACTIONS(538), + [anon_sym_i16] = ACTIONS(538), + [anon_sym_u32] = ACTIONS(538), + [anon_sym_i32] = ACTIONS(538), + [anon_sym_u64] = ACTIONS(538), + [anon_sym_i64] = ACTIONS(538), + [anon_sym_u128] = ACTIONS(538), + [anon_sym_i128] = ACTIONS(538), + [anon_sym_isize] = ACTIONS(538), + [anon_sym_usize] = ACTIONS(538), + [anon_sym_f32] = ACTIONS(538), + [anon_sym_f64] = ACTIONS(538), + [anon_sym_bool] = ACTIONS(538), + [anon_sym_str] = ACTIONS(538), + [anon_sym_char] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(538), + [anon_sym_as] = ACTIONS(538), + [anon_sym_async] = ACTIONS(538), + [anon_sym_break] = ACTIONS(538), + [anon_sym_const] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(538), + [anon_sym_default] = ACTIONS(538), + [anon_sym_enum] = ACTIONS(538), + [anon_sym_fn] = ACTIONS(538), + [anon_sym_for] = ACTIONS(538), + [anon_sym_if] = ACTIONS(538), + [anon_sym_impl] = ACTIONS(538), + [anon_sym_let] = ACTIONS(538), + [anon_sym_loop] = ACTIONS(538), + [anon_sym_match] = ACTIONS(538), + [anon_sym_mod] = ACTIONS(538), + [anon_sym_pub] = ACTIONS(538), + [anon_sym_return] = ACTIONS(538), + [anon_sym_static] = ACTIONS(538), + [anon_sym_struct] = ACTIONS(538), + [anon_sym_trait] = ACTIONS(538), + [anon_sym_type] = ACTIONS(538), + [anon_sym_union] = ACTIONS(538), + [anon_sym_unsafe] = ACTIONS(538), + [anon_sym_use] = ACTIONS(538), + [anon_sym_while] = ACTIONS(538), + [anon_sym_POUND] = ACTIONS(536), + [anon_sym_BANG] = ACTIONS(538), + [anon_sym_EQ] = ACTIONS(538), + [anon_sym_extern] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(538), + [anon_sym_GT] = ACTIONS(538), + [anon_sym_else] = ACTIONS(538), + [anon_sym_COLON_COLON] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(536), + [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(538), + [anon_sym_AMP_AMP] = ACTIONS(536), + [anon_sym_PIPE_PIPE] = ACTIONS(536), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_CARET] = ACTIONS(538), + [anon_sym_EQ_EQ] = ACTIONS(536), + [anon_sym_BANG_EQ] = ACTIONS(536), + [anon_sym_LT_EQ] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(536), + [anon_sym_LT_LT] = ACTIONS(538), + [anon_sym_GT_GT] = ACTIONS(538), + [anon_sym_SLASH] = ACTIONS(538), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_PLUS_EQ] = ACTIONS(536), + [anon_sym_DASH_EQ] = ACTIONS(536), + [anon_sym_STAR_EQ] = ACTIONS(536), + [anon_sym_SLASH_EQ] = ACTIONS(536), + [anon_sym_PERCENT_EQ] = ACTIONS(536), + [anon_sym_AMP_EQ] = ACTIONS(536), + [anon_sym_PIPE_EQ] = ACTIONS(536), + [anon_sym_CARET_EQ] = ACTIONS(536), + [anon_sym_LT_LT_EQ] = ACTIONS(536), + [anon_sym_GT_GT_EQ] = ACTIONS(536), + [anon_sym_yield] = ACTIONS(538), + [anon_sym_move] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(538), + [sym_integer_literal] = ACTIONS(536), + [aux_sym_string_literal_token1] = ACTIONS(536), + [sym_char_literal] = ACTIONS(536), + [anon_sym_true] = ACTIONS(538), + [anon_sym_false] = ACTIONS(538), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(538), + [sym_super] = ACTIONS(538), + [sym_crate] = ACTIONS(538), + [sym_metavariable] = ACTIONS(536), + [sym_raw_string_literal] = ACTIONS(536), + [sym_float_literal] = ACTIONS(536), + [sym_block_comment] = ACTIONS(3), + }, [63] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1188), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24088,11 +26817,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(536), + [anon_sym_DASH_GT] = ACTIONS(540), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -24112,485 +26841,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [64] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1320), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(542), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [65] = { - [ts_builtin_sym_end] = ACTIONS(542), - [sym_identifier] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(542), - [anon_sym_macro_rules_BANG] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(542), - [anon_sym_u8] = ACTIONS(544), - [anon_sym_i8] = ACTIONS(544), - [anon_sym_u16] = ACTIONS(544), - [anon_sym_i16] = ACTIONS(544), - [anon_sym_u32] = ACTIONS(544), - [anon_sym_i32] = ACTIONS(544), - [anon_sym_u64] = ACTIONS(544), - [anon_sym_i64] = ACTIONS(544), - [anon_sym_u128] = ACTIONS(544), - [anon_sym_i128] = ACTIONS(544), - [anon_sym_isize] = ACTIONS(544), - [anon_sym_usize] = ACTIONS(544), - [anon_sym_f32] = ACTIONS(544), - [anon_sym_f64] = ACTIONS(544), - [anon_sym_bool] = ACTIONS(544), - [anon_sym_str] = ACTIONS(544), - [anon_sym_char] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_as] = ACTIONS(544), - [anon_sym_async] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_const] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_default] = ACTIONS(544), - [anon_sym_enum] = ACTIONS(544), - [anon_sym_fn] = ACTIONS(544), - [anon_sym_for] = ACTIONS(544), - [anon_sym_if] = ACTIONS(544), - [anon_sym_impl] = ACTIONS(544), - [anon_sym_let] = ACTIONS(544), - [anon_sym_loop] = ACTIONS(544), - [anon_sym_match] = ACTIONS(544), - [anon_sym_mod] = ACTIONS(544), - [anon_sym_pub] = ACTIONS(544), - [anon_sym_return] = ACTIONS(544), - [anon_sym_static] = ACTIONS(544), - [anon_sym_struct] = ACTIONS(544), - [anon_sym_trait] = ACTIONS(544), - [anon_sym_type] = ACTIONS(544), - [anon_sym_union] = ACTIONS(544), - [anon_sym_unsafe] = ACTIONS(544), - [anon_sym_use] = ACTIONS(544), - [anon_sym_while] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_COLON_COLON] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(542), - [anon_sym_DOT_DOT] = ACTIONS(544), - [anon_sym_DOT_DOT_EQ] = ACTIONS(542), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_PLUS_EQ] = ACTIONS(542), - [anon_sym_DASH_EQ] = ACTIONS(542), - [anon_sym_STAR_EQ] = ACTIONS(542), - [anon_sym_SLASH_EQ] = ACTIONS(542), - [anon_sym_PERCENT_EQ] = ACTIONS(542), - [anon_sym_AMP_EQ] = ACTIONS(542), - [anon_sym_PIPE_EQ] = ACTIONS(542), - [anon_sym_CARET_EQ] = ACTIONS(542), - [anon_sym_LT_LT_EQ] = ACTIONS(542), - [anon_sym_GT_GT_EQ] = ACTIONS(542), - [anon_sym_yield] = ACTIONS(544), - [anon_sym_else] = ACTIONS(544), - [anon_sym_move] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [sym_integer_literal] = ACTIONS(542), - [aux_sym_string_literal_token1] = ACTIONS(542), - [sym_char_literal] = ACTIONS(542), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(544), - [sym_super] = ACTIONS(544), - [sym_crate] = ACTIONS(544), - [sym_metavariable] = ACTIONS(542), - [sym_raw_string_literal] = ACTIONS(542), - [sym_float_literal] = ACTIONS(542), - [sym_block_comment] = ACTIONS(3), - }, - [66] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1157), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(546), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(548), - [sym_identifier] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_macro_rules_BANG] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_QMARK] = ACTIONS(548), - [anon_sym_u8] = ACTIONS(550), - [anon_sym_i8] = ACTIONS(550), - [anon_sym_u16] = ACTIONS(550), - [anon_sym_i16] = ACTIONS(550), - [anon_sym_u32] = ACTIONS(550), - [anon_sym_i32] = ACTIONS(550), - [anon_sym_u64] = ACTIONS(550), - [anon_sym_i64] = ACTIONS(550), - [anon_sym_u128] = ACTIONS(550), - [anon_sym_i128] = ACTIONS(550), - [anon_sym_isize] = ACTIONS(550), - [anon_sym_usize] = ACTIONS(550), - [anon_sym_f32] = ACTIONS(550), - [anon_sym_f64] = ACTIONS(550), - [anon_sym_bool] = ACTIONS(550), - [anon_sym_str] = ACTIONS(550), - [anon_sym_char] = ACTIONS(550), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_as] = ACTIONS(550), - [anon_sym_async] = ACTIONS(550), - [anon_sym_break] = ACTIONS(550), - [anon_sym_const] = ACTIONS(550), - [anon_sym_continue] = ACTIONS(550), - [anon_sym_default] = ACTIONS(550), - [anon_sym_enum] = ACTIONS(550), - [anon_sym_fn] = ACTIONS(550), - [anon_sym_for] = ACTIONS(550), - [anon_sym_if] = ACTIONS(550), - [anon_sym_impl] = ACTIONS(550), - [anon_sym_let] = ACTIONS(550), - [anon_sym_loop] = ACTIONS(550), - [anon_sym_match] = ACTIONS(550), - [anon_sym_mod] = ACTIONS(550), - [anon_sym_pub] = ACTIONS(550), - [anon_sym_return] = ACTIONS(550), - [anon_sym_static] = ACTIONS(550), - [anon_sym_struct] = ACTIONS(550), - [anon_sym_trait] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_union] = ACTIONS(550), - [anon_sym_unsafe] = ACTIONS(550), - [anon_sym_use] = ACTIONS(550), - [anon_sym_while] = ACTIONS(550), - [anon_sym_POUND] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(550), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_extern] = ACTIONS(550), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_COLON_COLON] = ACTIONS(548), - [anon_sym_AMP] = ACTIONS(550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(548), - [anon_sym_DOT_DOT] = ACTIONS(550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(548), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(548), - [anon_sym_PIPE_PIPE] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT_EQ] = ACTIONS(548), - [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(550), - [anon_sym_GT_GT] = ACTIONS(550), - [anon_sym_SLASH] = ACTIONS(550), - [anon_sym_PERCENT] = ACTIONS(550), - [anon_sym_PLUS_EQ] = ACTIONS(548), - [anon_sym_DASH_EQ] = ACTIONS(548), - [anon_sym_STAR_EQ] = ACTIONS(548), - [anon_sym_SLASH_EQ] = ACTIONS(548), - [anon_sym_PERCENT_EQ] = ACTIONS(548), - [anon_sym_AMP_EQ] = ACTIONS(548), - [anon_sym_PIPE_EQ] = ACTIONS(548), - [anon_sym_CARET_EQ] = ACTIONS(548), - [anon_sym_LT_LT_EQ] = ACTIONS(548), - [anon_sym_GT_GT_EQ] = ACTIONS(548), - [anon_sym_yield] = ACTIONS(550), - [anon_sym_else] = ACTIONS(550), - [anon_sym_move] = ACTIONS(550), - [anon_sym_DOT] = ACTIONS(550), - [sym_integer_literal] = ACTIONS(548), - [aux_sym_string_literal_token1] = ACTIONS(548), - [sym_char_literal] = ACTIONS(548), - [anon_sym_true] = ACTIONS(550), - [anon_sym_false] = ACTIONS(550), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(550), - [sym_super] = ACTIONS(550), - [sym_crate] = ACTIONS(550), - [sym_metavariable] = ACTIONS(548), - [sym_raw_string_literal] = ACTIONS(548), - [sym_float_literal] = ACTIONS(548), - [sym_block_comment] = ACTIONS(3), - }, - [68] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1284), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -24622,11 +27030,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(536), + [anon_sym_BANG] = ACTIONS(506), + [anon_sym_DASH_GT] = ACTIONS(516), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(510), [anon_sym_DOT_DOT] = ACTIONS(526), [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), @@ -24646,165 +27054,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [69] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1158), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [66] = { + [ts_builtin_sym_end] = ACTIONS(544), + [sym_identifier] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(544), + [anon_sym_macro_rules_BANG] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_u8] = ACTIONS(546), + [anon_sym_i8] = ACTIONS(546), + [anon_sym_u16] = ACTIONS(546), + [anon_sym_i16] = ACTIONS(546), + [anon_sym_u32] = ACTIONS(546), + [anon_sym_i32] = ACTIONS(546), + [anon_sym_u64] = ACTIONS(546), + [anon_sym_i64] = ACTIONS(546), + [anon_sym_u128] = ACTIONS(546), + [anon_sym_i128] = ACTIONS(546), + [anon_sym_isize] = ACTIONS(546), + [anon_sym_usize] = ACTIONS(546), + [anon_sym_f32] = ACTIONS(546), + [anon_sym_f64] = ACTIONS(546), + [anon_sym_bool] = ACTIONS(546), + [anon_sym_str] = ACTIONS(546), + [anon_sym_char] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(546), + [anon_sym_as] = ACTIONS(546), + [anon_sym_async] = ACTIONS(546), + [anon_sym_break] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_default] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(546), + [anon_sym_fn] = ACTIONS(546), + [anon_sym_for] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_impl] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_loop] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_mod] = ACTIONS(546), + [anon_sym_pub] = ACTIONS(546), + [anon_sym_return] = ACTIONS(546), + [anon_sym_static] = ACTIONS(546), + [anon_sym_struct] = ACTIONS(546), + [anon_sym_trait] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_union] = ACTIONS(546), + [anon_sym_unsafe] = ACTIONS(546), + [anon_sym_use] = ACTIONS(546), + [anon_sym_while] = ACTIONS(546), + [anon_sym_POUND] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(546), + [anon_sym_else] = ACTIONS(546), + [anon_sym_COLON_COLON] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(544), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(546), + [anon_sym_EQ_EQ] = ACTIONS(544), + [anon_sym_BANG_EQ] = ACTIONS(544), + [anon_sym_LT_EQ] = ACTIONS(544), + [anon_sym_GT_EQ] = ACTIONS(544), + [anon_sym_LT_LT] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(546), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(546), + [anon_sym_PLUS_EQ] = ACTIONS(544), + [anon_sym_DASH_EQ] = ACTIONS(544), + [anon_sym_STAR_EQ] = ACTIONS(544), + [anon_sym_SLASH_EQ] = ACTIONS(544), + [anon_sym_PERCENT_EQ] = ACTIONS(544), + [anon_sym_AMP_EQ] = ACTIONS(544), + [anon_sym_PIPE_EQ] = ACTIONS(544), + [anon_sym_CARET_EQ] = ACTIONS(544), + [anon_sym_LT_LT_EQ] = ACTIONS(544), + [anon_sym_GT_GT_EQ] = ACTIONS(544), + [anon_sym_yield] = ACTIONS(546), + [anon_sym_move] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(546), + [sym_integer_literal] = ACTIONS(544), + [aux_sym_string_literal_token1] = ACTIONS(544), + [sym_char_literal] = ACTIONS(544), + [anon_sym_true] = ACTIONS(546), + [anon_sym_false] = ACTIONS(546), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(546), + [sym_super] = ACTIONS(546), + [sym_crate] = ACTIONS(546), + [sym_metavariable] = ACTIONS(544), + [sym_raw_string_literal] = ACTIONS(544), + [sym_float_literal] = ACTIONS(544), + [sym_block_comment] = ACTIONS(3), + }, + [67] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1316), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(548), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(552), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [70] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1240), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [68] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -24836,11 +27351,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(506), + [anon_sym_DASH_GT] = ACTIONS(540), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(510), [anon_sym_DOT_DOT] = ACTIONS(526), [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), @@ -24860,111 +27375,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [69] = { + [ts_builtin_sym_end] = ACTIONS(550), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_macro_rules_BANG] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(550), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [anon_sym_POUND] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_EQ] = ACTIONS(552), + [anon_sym_extern] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_else] = ACTIONS(552), + [anon_sym_COLON_COLON] = ACTIONS(550), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(550), + [anon_sym_DOT_DOT] = ACTIONS(552), + [anon_sym_DOT_DOT_EQ] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_AMP_AMP] = ACTIONS(550), + [anon_sym_PIPE_PIPE] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(552), + [anon_sym_CARET] = ACTIONS(552), + [anon_sym_EQ_EQ] = ACTIONS(550), + [anon_sym_BANG_EQ] = ACTIONS(550), + [anon_sym_LT_EQ] = ACTIONS(550), + [anon_sym_GT_EQ] = ACTIONS(550), + [anon_sym_LT_LT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(552), + [anon_sym_SLASH] = ACTIONS(552), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_PLUS_EQ] = ACTIONS(550), + [anon_sym_DASH_EQ] = ACTIONS(550), + [anon_sym_STAR_EQ] = ACTIONS(550), + [anon_sym_SLASH_EQ] = ACTIONS(550), + [anon_sym_PERCENT_EQ] = ACTIONS(550), + [anon_sym_AMP_EQ] = ACTIONS(550), + [anon_sym_PIPE_EQ] = ACTIONS(550), + [anon_sym_CARET_EQ] = ACTIONS(550), + [anon_sym_LT_LT_EQ] = ACTIONS(550), + [anon_sym_GT_GT_EQ] = ACTIONS(550), + [anon_sym_yield] = ACTIONS(552), + [anon_sym_move] = ACTIONS(552), + [anon_sym_DOT] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(550), + [aux_sym_string_literal_token1] = ACTIONS(550), + [sym_char_literal] = ACTIONS(550), + [anon_sym_true] = ACTIONS(552), + [anon_sym_false] = ACTIONS(552), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(550), + [sym_raw_string_literal] = ACTIONS(550), + [sym_float_literal] = ACTIONS(550), + [sym_block_comment] = ACTIONS(3), + }, + [70] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(554), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, [71] = { - [ts_builtin_sym_end] = ACTIONS(554), - [sym_identifier] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_macro_rules_BANG] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_SQUOTE] = ACTIONS(556), - [anon_sym_as] = ACTIONS(556), - [anon_sym_async] = ACTIONS(556), - [anon_sym_break] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_continue] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_enum] = ACTIONS(556), - [anon_sym_fn] = ACTIONS(556), - [anon_sym_for] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_impl] = ACTIONS(556), - [anon_sym_let] = ACTIONS(556), - [anon_sym_loop] = ACTIONS(556), - [anon_sym_match] = ACTIONS(556), - [anon_sym_mod] = ACTIONS(556), - [anon_sym_pub] = ACTIONS(556), - [anon_sym_return] = ACTIONS(556), - [anon_sym_static] = ACTIONS(556), - [anon_sym_struct] = ACTIONS(556), - [anon_sym_trait] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_unsafe] = ACTIONS(556), - [anon_sym_use] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_extern] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT] = ACTIONS(556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_yield] = ACTIONS(556), - [anon_sym_else] = ACTIONS(556), - [anon_sym_move] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1191), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [sym_mutable_specifier] = ACTIONS(556), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [72] = { @@ -25074,57 +27803,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [73] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1241), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1345), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [74] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1290), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -25156,12 +27991,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(510), [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -25179,18 +28014,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [74] = { + [75] = { [ts_builtin_sym_end] = ACTIONS(562), [sym_identifier] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_SEMI] = ACTIONS(562), [anon_sym_macro_rules_BANG] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(562), [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(568), [anon_sym_u8] = ACTIONS(564), [anon_sym_i8] = ACTIONS(564), [anon_sym_u16] = ACTIONS(564), @@ -25209,7 +28044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(564), [anon_sym_char] = ACTIONS(564), [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_as] = ACTIONS(568), + [anon_sym_as] = ACTIONS(566), [anon_sym_async] = ACTIONS(564), [anon_sym_break] = ACTIONS(564), [anon_sym_const] = ACTIONS(564), @@ -25236,41 +28071,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(564), [anon_sym_POUND] = ACTIONS(562), [anon_sym_BANG] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(566), [anon_sym_extern] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(566), [anon_sym_COLON_COLON] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), [anon_sym_yield] = ACTIONS(564), [anon_sym_move] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(566), [sym_integer_literal] = ACTIONS(562), [aux_sym_string_literal_token1] = ACTIONS(562), [sym_char_literal] = ACTIONS(562), @@ -25285,53 +28120,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(562), [sym_block_comment] = ACTIONS(3), }, - [75] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1321), - [sym_macro_invocation] = STATE(801), + [76] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1341), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25391,164 +28226,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [76] = { - [ts_builtin_sym_end] = ACTIONS(570), - [sym_identifier] = ACTIONS(572), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_macro_rules_BANG] = ACTIONS(570), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(572), - [anon_sym_i8] = ACTIONS(572), - [anon_sym_u16] = ACTIONS(572), - [anon_sym_i16] = ACTIONS(572), - [anon_sym_u32] = ACTIONS(572), - [anon_sym_i32] = ACTIONS(572), - [anon_sym_u64] = ACTIONS(572), - [anon_sym_i64] = ACTIONS(572), - [anon_sym_u128] = ACTIONS(572), - [anon_sym_i128] = ACTIONS(572), - [anon_sym_isize] = ACTIONS(572), - [anon_sym_usize] = ACTIONS(572), - [anon_sym_f32] = ACTIONS(572), - [anon_sym_f64] = ACTIONS(572), - [anon_sym_bool] = ACTIONS(572), - [anon_sym_str] = ACTIONS(572), - [anon_sym_char] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(572), - [anon_sym_as] = ACTIONS(568), - [anon_sym_async] = ACTIONS(572), - [anon_sym_break] = ACTIONS(572), - [anon_sym_const] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(572), - [anon_sym_default] = ACTIONS(572), - [anon_sym_enum] = ACTIONS(572), - [anon_sym_fn] = ACTIONS(572), - [anon_sym_for] = ACTIONS(572), - [anon_sym_if] = ACTIONS(572), - [anon_sym_impl] = ACTIONS(572), - [anon_sym_let] = ACTIONS(572), - [anon_sym_loop] = ACTIONS(572), - [anon_sym_match] = ACTIONS(572), - [anon_sym_mod] = ACTIONS(572), - [anon_sym_pub] = ACTIONS(572), - [anon_sym_return] = ACTIONS(572), - [anon_sym_static] = ACTIONS(572), - [anon_sym_struct] = ACTIONS(572), - [anon_sym_trait] = ACTIONS(572), - [anon_sym_type] = ACTIONS(572), - [anon_sym_union] = ACTIONS(572), - [anon_sym_unsafe] = ACTIONS(572), - [anon_sym_use] = ACTIONS(572), - [anon_sym_while] = ACTIONS(572), - [anon_sym_POUND] = ACTIONS(570), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_yield] = ACTIONS(572), - [anon_sym_move] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(570), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(570), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(572), - [sym_super] = ACTIONS(572), - [sym_crate] = ACTIONS(572), - [sym_metavariable] = ACTIONS(570), - [sym_raw_string_literal] = ACTIONS(570), - [sym_float_literal] = ACTIONS(570), - [sym_block_comment] = ACTIONS(3), - }, [77] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1263), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1247), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -25580,12 +28309,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -25604,52 +28333,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [78] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1314), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1166), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25690,7 +28419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -25710,158 +28439,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [79] = { - [ts_builtin_sym_end] = ACTIONS(574), - [sym_identifier] = ACTIONS(576), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_macro_rules_BANG] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_u8] = ACTIONS(576), - [anon_sym_i8] = ACTIONS(576), - [anon_sym_u16] = ACTIONS(576), - [anon_sym_i16] = ACTIONS(576), - [anon_sym_u32] = ACTIONS(576), - [anon_sym_i32] = ACTIONS(576), - [anon_sym_u64] = ACTIONS(576), - [anon_sym_i64] = ACTIONS(576), - [anon_sym_u128] = ACTIONS(576), - [anon_sym_i128] = ACTIONS(576), - [anon_sym_isize] = ACTIONS(576), - [anon_sym_usize] = ACTIONS(576), - [anon_sym_f32] = ACTIONS(576), - [anon_sym_f64] = ACTIONS(576), - [anon_sym_bool] = ACTIONS(576), - [anon_sym_str] = ACTIONS(576), - [anon_sym_char] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(576), - [anon_sym_as] = ACTIONS(576), - [anon_sym_async] = ACTIONS(576), - [anon_sym_break] = ACTIONS(576), - [anon_sym_const] = ACTIONS(576), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_default] = ACTIONS(576), - [anon_sym_enum] = ACTIONS(576), - [anon_sym_fn] = ACTIONS(576), - [anon_sym_for] = ACTIONS(576), - [anon_sym_if] = ACTIONS(576), - [anon_sym_impl] = ACTIONS(576), - [anon_sym_let] = ACTIONS(576), - [anon_sym_loop] = ACTIONS(576), - [anon_sym_match] = ACTIONS(576), - [anon_sym_mod] = ACTIONS(576), - [anon_sym_pub] = ACTIONS(576), - [anon_sym_return] = ACTIONS(576), - [anon_sym_static] = ACTIONS(576), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_trait] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_union] = ACTIONS(576), - [anon_sym_unsafe] = ACTIONS(576), - [anon_sym_use] = ACTIONS(576), - [anon_sym_while] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(576), - [anon_sym_extern] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(574), - [anon_sym_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_EQ_EQ] = ACTIONS(574), - [anon_sym_BANG_EQ] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(574), - [anon_sym_LT_LT] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(576), - [anon_sym_SLASH] = ACTIONS(576), - [anon_sym_PERCENT] = ACTIONS(576), - [anon_sym_PLUS_EQ] = ACTIONS(574), - [anon_sym_DASH_EQ] = ACTIONS(574), - [anon_sym_STAR_EQ] = ACTIONS(574), - [anon_sym_SLASH_EQ] = ACTIONS(574), - [anon_sym_PERCENT_EQ] = ACTIONS(574), - [anon_sym_AMP_EQ] = ACTIONS(574), - [anon_sym_PIPE_EQ] = ACTIONS(574), - [anon_sym_CARET_EQ] = ACTIONS(574), - [anon_sym_LT_LT_EQ] = ACTIONS(574), - [anon_sym_GT_GT_EQ] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(576), - [anon_sym_move] = ACTIONS(576), - [anon_sym_DOT] = ACTIONS(576), - [sym_integer_literal] = ACTIONS(574), - [aux_sym_string_literal_token1] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [anon_sym_true] = ACTIONS(576), - [anon_sym_false] = ACTIONS(576), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1285), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(576), - [sym_super] = ACTIONS(576), - [sym_crate] = ACTIONS(576), - [sym_metavariable] = ACTIONS(574), - [sym_raw_string_literal] = ACTIONS(574), - [sym_float_literal] = ACTIONS(574), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [80] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1325), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1342), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25922,158 +28651,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [81] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1327), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1282), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [82] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1317), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1286), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [83] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1344), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26133,53 +28968,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1328), - [sym_macro_invocation] = STATE(801), + [84] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1248), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26239,164 +29074,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1258), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, [85] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -26428,12 +29157,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(510), [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -26452,163 +29181,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [86] = { - [ts_builtin_sym_end] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_macro_rules_BANG] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_async] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_enum] = ACTIONS(580), - [anon_sym_fn] = ACTIONS(580), - [anon_sym_for] = ACTIONS(580), - [anon_sym_if] = ACTIONS(580), - [anon_sym_impl] = ACTIONS(580), - [anon_sym_let] = ACTIONS(580), - [anon_sym_loop] = ACTIONS(580), - [anon_sym_match] = ACTIONS(580), - [anon_sym_mod] = ACTIONS(580), - [anon_sym_pub] = ACTIONS(580), - [anon_sym_return] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_struct] = ACTIONS(580), - [anon_sym_trait] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_unsafe] = ACTIONS(580), - [anon_sym_use] = ACTIONS(580), - [anon_sym_while] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_extern] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_yield] = ACTIONS(580), - [anon_sym_move] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), - [sym_block_comment] = ACTIONS(3), - }, - [87] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1253), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1292), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -26640,12 +29263,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -26663,53 +29286,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [88] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1255), - [sym_macro_invocation] = STATE(801), + [87] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1118), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26750,7 +29373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -26769,164 +29392,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1311), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [88] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [90] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1225), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [89] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -26958,12 +29581,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -26981,689 +29604,795 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [91] = { - [ts_builtin_sym_end] = ACTIONS(582), - [sym_identifier] = ACTIONS(584), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_macro_rules_BANG] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(582), - [anon_sym_u8] = ACTIONS(584), - [anon_sym_i8] = ACTIONS(584), - [anon_sym_u16] = ACTIONS(584), - [anon_sym_i16] = ACTIONS(584), - [anon_sym_u32] = ACTIONS(584), - [anon_sym_i32] = ACTIONS(584), - [anon_sym_u64] = ACTIONS(584), - [anon_sym_i64] = ACTIONS(584), - [anon_sym_u128] = ACTIONS(584), - [anon_sym_i128] = ACTIONS(584), - [anon_sym_isize] = ACTIONS(584), - [anon_sym_usize] = ACTIONS(584), - [anon_sym_f32] = ACTIONS(584), - [anon_sym_f64] = ACTIONS(584), - [anon_sym_bool] = ACTIONS(584), - [anon_sym_str] = ACTIONS(584), - [anon_sym_char] = ACTIONS(584), - [anon_sym_SQUOTE] = ACTIONS(584), - [anon_sym_as] = ACTIONS(584), - [anon_sym_async] = ACTIONS(584), - [anon_sym_break] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_default] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(584), - [anon_sym_fn] = ACTIONS(584), - [anon_sym_for] = ACTIONS(584), - [anon_sym_if] = ACTIONS(584), - [anon_sym_impl] = ACTIONS(584), - [anon_sym_let] = ACTIONS(584), - [anon_sym_loop] = ACTIONS(584), - [anon_sym_match] = ACTIONS(584), - [anon_sym_mod] = ACTIONS(584), - [anon_sym_pub] = ACTIONS(584), - [anon_sym_return] = ACTIONS(584), - [anon_sym_static] = ACTIONS(584), - [anon_sym_struct] = ACTIONS(584), - [anon_sym_trait] = ACTIONS(584), - [anon_sym_type] = ACTIONS(584), - [anon_sym_union] = ACTIONS(584), - [anon_sym_unsafe] = ACTIONS(584), - [anon_sym_use] = ACTIONS(584), - [anon_sym_while] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(582), - [anon_sym_BANG] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(584), - [anon_sym_extern] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_COLON_COLON] = ACTIONS(582), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(582), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_PLUS_EQ] = ACTIONS(582), - [anon_sym_DASH_EQ] = ACTIONS(582), - [anon_sym_STAR_EQ] = ACTIONS(582), - [anon_sym_SLASH_EQ] = ACTIONS(582), - [anon_sym_PERCENT_EQ] = ACTIONS(582), - [anon_sym_AMP_EQ] = ACTIONS(582), - [anon_sym_PIPE_EQ] = ACTIONS(582), - [anon_sym_CARET_EQ] = ACTIONS(582), - [anon_sym_LT_LT_EQ] = ACTIONS(582), - [anon_sym_GT_GT_EQ] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(584), - [anon_sym_move] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(584), - [sym_integer_literal] = ACTIONS(582), - [aux_sym_string_literal_token1] = ACTIONS(582), - [sym_char_literal] = ACTIONS(582), - [anon_sym_true] = ACTIONS(584), - [anon_sym_false] = ACTIONS(584), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(584), - [sym_super] = ACTIONS(584), - [sym_crate] = ACTIONS(584), - [sym_metavariable] = ACTIONS(582), - [sym_raw_string_literal] = ACTIONS(582), - [sym_float_literal] = ACTIONS(582), - [sym_block_comment] = ACTIONS(3), - }, - [92] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1179), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [90] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1296), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1294), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [91] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1297), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [94] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1316), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [92] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [95] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1298), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [93] = { + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_macro_rules_BANG] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u128] = ACTIONS(572), + [anon_sym_i128] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_str] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_as] = ACTIONS(572), + [anon_sym_async] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_const] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(572), + [anon_sym_fn] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_impl] = ACTIONS(572), + [anon_sym_let] = ACTIONS(572), + [anon_sym_loop] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_mod] = ACTIONS(572), + [anon_sym_pub] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_static] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_trait] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_union] = ACTIONS(572), + [anon_sym_unsafe] = ACTIONS(572), + [anon_sym_use] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(570), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_extern] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_move] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(572), + [sym_integer_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(570), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(572), + [sym_super] = ACTIONS(572), + [sym_crate] = ACTIONS(572), + [sym_metavariable] = ACTIONS(570), + [sym_raw_string_literal] = ACTIONS(570), + [sym_float_literal] = ACTIONS(570), + [sym_block_comment] = ACTIONS(3), + }, + [94] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1300), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [96] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1177), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [95] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1312), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [96] = { + [ts_builtin_sym_end] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_macro_rules_BANG] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_u8] = ACTIONS(576), + [anon_sym_i8] = ACTIONS(576), + [anon_sym_u16] = ACTIONS(576), + [anon_sym_i16] = ACTIONS(576), + [anon_sym_u32] = ACTIONS(576), + [anon_sym_i32] = ACTIONS(576), + [anon_sym_u64] = ACTIONS(576), + [anon_sym_i64] = ACTIONS(576), + [anon_sym_u128] = ACTIONS(576), + [anon_sym_i128] = ACTIONS(576), + [anon_sym_isize] = ACTIONS(576), + [anon_sym_usize] = ACTIONS(576), + [anon_sym_f32] = ACTIONS(576), + [anon_sym_f64] = ACTIONS(576), + [anon_sym_bool] = ACTIONS(576), + [anon_sym_str] = ACTIONS(576), + [anon_sym_char] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(576), + [anon_sym_as] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_break] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(576), + [anon_sym_fn] = ACTIONS(576), + [anon_sym_for] = ACTIONS(576), + [anon_sym_if] = ACTIONS(576), + [anon_sym_impl] = ACTIONS(576), + [anon_sym_let] = ACTIONS(576), + [anon_sym_loop] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_mod] = ACTIONS(576), + [anon_sym_pub] = ACTIONS(576), + [anon_sym_return] = ACTIONS(576), + [anon_sym_static] = ACTIONS(576), + [anon_sym_struct] = ACTIONS(576), + [anon_sym_trait] = ACTIONS(576), + [anon_sym_type] = ACTIONS(576), + [anon_sym_union] = ACTIONS(576), + [anon_sym_unsafe] = ACTIONS(576), + [anon_sym_use] = ACTIONS(576), + [anon_sym_while] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_extern] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), + [anon_sym_yield] = ACTIONS(576), + [anon_sym_move] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(576), + [sym_integer_literal] = ACTIONS(574), + [aux_sym_string_literal_token1] = ACTIONS(574), + [sym_char_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_crate] = ACTIONS(576), + [sym_metavariable] = ACTIONS(574), + [sym_raw_string_literal] = ACTIONS(574), + [sym_float_literal] = ACTIONS(574), + [sym_block_comment] = ACTIONS(3), + }, [97] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1333), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1167), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27704,7 +30433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27724,52 +30453,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [98] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1176), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1168), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27810,7 +30539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27830,52 +30559,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [99] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1175), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1337), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27916,7 +30645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27936,52 +30665,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [100] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1174), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1325), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28022,7 +30751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28042,52 +30771,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [101] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1330), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1256), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28148,52 +30877,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [102] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1173), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1306), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28234,7 +30963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28254,52 +30983,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [103] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1309), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1302), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28360,52 +31089,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [104] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1233), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1170), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28446,7 +31175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28466,158 +31195,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [105] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1254), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [106] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1326), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28677,477 +31300,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [107] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1171), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [108] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1304), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [106] = { + [ts_builtin_sym_end] = ACTIONS(578), + [sym_identifier] = ACTIONS(580), + [anon_sym_SEMI] = ACTIONS(578), + [anon_sym_macro_rules_BANG] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(580), + [anon_sym_as] = ACTIONS(580), + [anon_sym_async] = ACTIONS(580), + [anon_sym_break] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_continue] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(580), + [anon_sym_for] = ACTIONS(580), + [anon_sym_if] = ACTIONS(580), + [anon_sym_impl] = ACTIONS(580), + [anon_sym_let] = ACTIONS(580), + [anon_sym_loop] = ACTIONS(580), + [anon_sym_match] = ACTIONS(580), + [anon_sym_mod] = ACTIONS(580), + [anon_sym_pub] = ACTIONS(580), + [anon_sym_return] = ACTIONS(580), + [anon_sym_static] = ACTIONS(580), + [anon_sym_struct] = ACTIONS(580), + [anon_sym_trait] = ACTIONS(580), + [anon_sym_type] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_unsafe] = ACTIONS(580), + [anon_sym_use] = ACTIONS(580), + [anon_sym_while] = ACTIONS(580), + [anon_sym_POUND] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_EQ] = ACTIONS(580), + [anon_sym_extern] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_PLUS_EQ] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(578), + [anon_sym_STAR_EQ] = ACTIONS(578), + [anon_sym_SLASH_EQ] = ACTIONS(578), + [anon_sym_PERCENT_EQ] = ACTIONS(578), + [anon_sym_AMP_EQ] = ACTIONS(578), + [anon_sym_PIPE_EQ] = ACTIONS(578), + [anon_sym_CARET_EQ] = ACTIONS(578), + [anon_sym_LT_LT_EQ] = ACTIONS(578), + [anon_sym_GT_GT_EQ] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [anon_sym_move] = ACTIONS(580), + [anon_sym_DOT] = ACTIONS(580), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_crate] = ACTIONS(580), + [sym_metavariable] = ACTIONS(578), + [sym_raw_string_literal] = ACTIONS(578), + [sym_float_literal] = ACTIONS(578), [sym_block_comment] = ACTIONS(3), }, - [109] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1168), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [107] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [110] = { - [ts_builtin_sym_end] = ACTIONS(586), - [sym_identifier] = ACTIONS(588), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_macro_rules_BANG] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_RBRACE] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_STAR] = ACTIONS(588), - [anon_sym_QMARK] = ACTIONS(586), - [anon_sym_u8] = ACTIONS(588), - [anon_sym_i8] = ACTIONS(588), - [anon_sym_u16] = ACTIONS(588), - [anon_sym_i16] = ACTIONS(588), - [anon_sym_u32] = ACTIONS(588), - [anon_sym_i32] = ACTIONS(588), - [anon_sym_u64] = ACTIONS(588), - [anon_sym_i64] = ACTIONS(588), - [anon_sym_u128] = ACTIONS(588), - [anon_sym_i128] = ACTIONS(588), - [anon_sym_isize] = ACTIONS(588), - [anon_sym_usize] = ACTIONS(588), - [anon_sym_f32] = ACTIONS(588), - [anon_sym_f64] = ACTIONS(588), - [anon_sym_bool] = ACTIONS(588), - [anon_sym_str] = ACTIONS(588), - [anon_sym_char] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(588), - [anon_sym_as] = ACTIONS(588), - [anon_sym_async] = ACTIONS(588), - [anon_sym_break] = ACTIONS(588), - [anon_sym_const] = ACTIONS(588), - [anon_sym_continue] = ACTIONS(588), - [anon_sym_default] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(588), - [anon_sym_fn] = ACTIONS(588), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(588), - [anon_sym_impl] = ACTIONS(588), - [anon_sym_let] = ACTIONS(588), - [anon_sym_loop] = ACTIONS(588), - [anon_sym_match] = ACTIONS(588), - [anon_sym_mod] = ACTIONS(588), - [anon_sym_pub] = ACTIONS(588), - [anon_sym_return] = ACTIONS(588), - [anon_sym_static] = ACTIONS(588), - [anon_sym_struct] = ACTIONS(588), - [anon_sym_trait] = ACTIONS(588), - [anon_sym_type] = ACTIONS(588), - [anon_sym_union] = ACTIONS(588), - [anon_sym_unsafe] = ACTIONS(588), - [anon_sym_use] = ACTIONS(588), - [anon_sym_while] = ACTIONS(588), - [anon_sym_POUND] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_EQ] = ACTIONS(588), - [anon_sym_extern] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(588), - [anon_sym_DOT_DOT_EQ] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_EQ_EQ] = ACTIONS(586), - [anon_sym_BANG_EQ] = ACTIONS(586), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(588), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_PLUS_EQ] = ACTIONS(586), - [anon_sym_DASH_EQ] = ACTIONS(586), - [anon_sym_STAR_EQ] = ACTIONS(586), - [anon_sym_SLASH_EQ] = ACTIONS(586), - [anon_sym_PERCENT_EQ] = ACTIONS(586), - [anon_sym_AMP_EQ] = ACTIONS(586), - [anon_sym_PIPE_EQ] = ACTIONS(586), - [anon_sym_CARET_EQ] = ACTIONS(586), - [anon_sym_LT_LT_EQ] = ACTIONS(586), - [anon_sym_GT_GT_EQ] = ACTIONS(586), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_move] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(588), - [sym_integer_literal] = ACTIONS(586), - [aux_sym_string_literal_token1] = ACTIONS(586), - [sym_char_literal] = ACTIONS(586), - [anon_sym_true] = ACTIONS(588), - [anon_sym_false] = ACTIONS(588), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(588), - [sym_super] = ACTIONS(588), - [sym_crate] = ACTIONS(588), - [sym_metavariable] = ACTIONS(586), - [sym_raw_string_literal] = ACTIONS(586), - [sym_float_literal] = ACTIONS(586), - [sym_block_comment] = ACTIONS(3), - }, - [111] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1302), - [sym_macro_invocation] = STATE(801), + [108] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29207,58 +31618,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [112] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1286), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [109] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -29290,12 +31701,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -29313,56 +31724,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [113] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1166), - [sym_macro_invocation] = STATE(801), + [110] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1327), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(254), + [sym_if_let_expression] = STATE(254), + [sym_match_expression] = STATE(254), + [sym_while_expression] = STATE(254), + [sym_while_let_expression] = STATE(254), + [sym_loop_expression] = STATE(254), + [sym_for_expression] = STATE(254), + [sym_const_block] = STATE(254), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2602), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(254), + [sym_async_block] = STATE(254), + [sym_block] = STATE(254), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(582), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -29383,24 +31794,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(584), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(586), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(594), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_while] = ACTIONS(598), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29419,53 +31830,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [114] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1329), - [sym_macro_invocation] = STATE(801), + [111] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1334), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29525,53 +31936,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [115] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1320), - [sym_macro_invocation] = STATE(801), + [112] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1347), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29631,56 +32042,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1165), - [sym_macro_invocation] = STATE(801), + [113] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(254), + [sym_if_let_expression] = STATE(254), + [sym_match_expression] = STATE(254), + [sym_while_expression] = STATE(254), + [sym_while_let_expression] = STATE(254), + [sym_loop_expression] = STATE(254), + [sym_for_expression] = STATE(254), + [sym_const_block] = STATE(254), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2602), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(254), + [sym_async_block] = STATE(254), + [sym_block] = STATE(254), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(582), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -29701,24 +32112,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(584), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(586), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(594), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_while] = ACTIONS(598), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29737,53 +32148,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [117] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1164), - [sym_macro_invocation] = STATE(801), + [114] = { + [ts_builtin_sym_end] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_macro_rules_BANG] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(602), + [anon_sym_i8] = ACTIONS(602), + [anon_sym_u16] = ACTIONS(602), + [anon_sym_i16] = ACTIONS(602), + [anon_sym_u32] = ACTIONS(602), + [anon_sym_i32] = ACTIONS(602), + [anon_sym_u64] = ACTIONS(602), + [anon_sym_i64] = ACTIONS(602), + [anon_sym_u128] = ACTIONS(602), + [anon_sym_i128] = ACTIONS(602), + [anon_sym_isize] = ACTIONS(602), + [anon_sym_usize] = ACTIONS(602), + [anon_sym_f32] = ACTIONS(602), + [anon_sym_f64] = ACTIONS(602), + [anon_sym_bool] = ACTIONS(602), + [anon_sym_str] = ACTIONS(602), + [anon_sym_char] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(602), + [anon_sym_as] = ACTIONS(602), + [anon_sym_async] = ACTIONS(602), + [anon_sym_break] = ACTIONS(602), + [anon_sym_const] = ACTIONS(602), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_default] = ACTIONS(602), + [anon_sym_enum] = ACTIONS(602), + [anon_sym_fn] = ACTIONS(602), + [anon_sym_for] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_impl] = ACTIONS(602), + [anon_sym_let] = ACTIONS(602), + [anon_sym_loop] = ACTIONS(602), + [anon_sym_match] = ACTIONS(602), + [anon_sym_mod] = ACTIONS(602), + [anon_sym_pub] = ACTIONS(602), + [anon_sym_return] = ACTIONS(602), + [anon_sym_static] = ACTIONS(602), + [anon_sym_struct] = ACTIONS(602), + [anon_sym_trait] = ACTIONS(602), + [anon_sym_type] = ACTIONS(602), + [anon_sym_union] = ACTIONS(602), + [anon_sym_unsafe] = ACTIONS(602), + [anon_sym_use] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_EQ] = ACTIONS(602), + [anon_sym_extern] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(600), + [anon_sym_AMP] = ACTIONS(602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT] = ACTIONS(602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_EQ_EQ] = ACTIONS(600), + [anon_sym_BANG_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(602), + [anon_sym_PERCENT] = ACTIONS(602), + [anon_sym_PLUS_EQ] = ACTIONS(600), + [anon_sym_DASH_EQ] = ACTIONS(600), + [anon_sym_STAR_EQ] = ACTIONS(600), + [anon_sym_SLASH_EQ] = ACTIONS(600), + [anon_sym_PERCENT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(600), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_yield] = ACTIONS(602), + [anon_sym_move] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(602), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(600), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(602), + [anon_sym_false] = ACTIONS(602), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(602), + [sym_super] = ACTIONS(602), + [sym_crate] = ACTIONS(602), + [sym_metavariable] = ACTIONS(600), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), + [sym_block_comment] = ACTIONS(3), + }, + [115] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1258), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29824,7 +32341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29843,53 +32360,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1322), - [sym_macro_invocation] = STATE(801), + [116] = { + [ts_builtin_sym_end] = ACTIONS(604), + [sym_identifier] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_macro_rules_BANG] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(604), + [anon_sym_u8] = ACTIONS(606), + [anon_sym_i8] = ACTIONS(606), + [anon_sym_u16] = ACTIONS(606), + [anon_sym_i16] = ACTIONS(606), + [anon_sym_u32] = ACTIONS(606), + [anon_sym_i32] = ACTIONS(606), + [anon_sym_u64] = ACTIONS(606), + [anon_sym_i64] = ACTIONS(606), + [anon_sym_u128] = ACTIONS(606), + [anon_sym_i128] = ACTIONS(606), + [anon_sym_isize] = ACTIONS(606), + [anon_sym_usize] = ACTIONS(606), + [anon_sym_f32] = ACTIONS(606), + [anon_sym_f64] = ACTIONS(606), + [anon_sym_bool] = ACTIONS(606), + [anon_sym_str] = ACTIONS(606), + [anon_sym_char] = ACTIONS(606), + [anon_sym_SQUOTE] = ACTIONS(606), + [anon_sym_as] = ACTIONS(606), + [anon_sym_async] = ACTIONS(606), + [anon_sym_break] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_default] = ACTIONS(606), + [anon_sym_enum] = ACTIONS(606), + [anon_sym_fn] = ACTIONS(606), + [anon_sym_for] = ACTIONS(606), + [anon_sym_if] = ACTIONS(606), + [anon_sym_impl] = ACTIONS(606), + [anon_sym_let] = ACTIONS(606), + [anon_sym_loop] = ACTIONS(606), + [anon_sym_match] = ACTIONS(606), + [anon_sym_mod] = ACTIONS(606), + [anon_sym_pub] = ACTIONS(606), + [anon_sym_return] = ACTIONS(606), + [anon_sym_static] = ACTIONS(606), + [anon_sym_struct] = ACTIONS(606), + [anon_sym_trait] = ACTIONS(606), + [anon_sym_type] = ACTIONS(606), + [anon_sym_union] = ACTIONS(606), + [anon_sym_unsafe] = ACTIONS(606), + [anon_sym_use] = ACTIONS(606), + [anon_sym_while] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_EQ] = ACTIONS(606), + [anon_sym_extern] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_AMP_AMP] = ACTIONS(604), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_CARET] = ACTIONS(606), + [anon_sym_EQ_EQ] = ACTIONS(604), + [anon_sym_BANG_EQ] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_LT_LT] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(606), + [anon_sym_PLUS_EQ] = ACTIONS(604), + [anon_sym_DASH_EQ] = ACTIONS(604), + [anon_sym_STAR_EQ] = ACTIONS(604), + [anon_sym_SLASH_EQ] = ACTIONS(604), + [anon_sym_PERCENT_EQ] = ACTIONS(604), + [anon_sym_AMP_EQ] = ACTIONS(604), + [anon_sym_PIPE_EQ] = ACTIONS(604), + [anon_sym_CARET_EQ] = ACTIONS(604), + [anon_sym_LT_LT_EQ] = ACTIONS(604), + [anon_sym_GT_GT_EQ] = ACTIONS(604), + [anon_sym_yield] = ACTIONS(606), + [anon_sym_move] = ACTIONS(606), + [anon_sym_DOT] = ACTIONS(606), + [sym_integer_literal] = ACTIONS(604), + [aux_sym_string_literal_token1] = ACTIONS(604), + [sym_char_literal] = ACTIONS(604), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(606), + [sym_super] = ACTIONS(606), + [sym_crate] = ACTIONS(606), + [sym_metavariable] = ACTIONS(604), + [sym_raw_string_literal] = ACTIONS(604), + [sym_float_literal] = ACTIONS(604), + [sym_block_comment] = ACTIONS(3), + }, + [117] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29949,159 +32572,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [118] = { + [ts_builtin_sym_end] = ACTIONS(608), + [sym_identifier] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_macro_rules_BANG] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(608), + [anon_sym_u8] = ACTIONS(610), + [anon_sym_i8] = ACTIONS(610), + [anon_sym_u16] = ACTIONS(610), + [anon_sym_i16] = ACTIONS(610), + [anon_sym_u32] = ACTIONS(610), + [anon_sym_i32] = ACTIONS(610), + [anon_sym_u64] = ACTIONS(610), + [anon_sym_i64] = ACTIONS(610), + [anon_sym_u128] = ACTIONS(610), + [anon_sym_i128] = ACTIONS(610), + [anon_sym_isize] = ACTIONS(610), + [anon_sym_usize] = ACTIONS(610), + [anon_sym_f32] = ACTIONS(610), + [anon_sym_f64] = ACTIONS(610), + [anon_sym_bool] = ACTIONS(610), + [anon_sym_str] = ACTIONS(610), + [anon_sym_char] = ACTIONS(610), + [anon_sym_SQUOTE] = ACTIONS(610), + [anon_sym_as] = ACTIONS(610), + [anon_sym_async] = ACTIONS(610), + [anon_sym_break] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(610), + [anon_sym_default] = ACTIONS(610), + [anon_sym_enum] = ACTIONS(610), + [anon_sym_fn] = ACTIONS(610), + [anon_sym_for] = ACTIONS(610), + [anon_sym_if] = ACTIONS(610), + [anon_sym_impl] = ACTIONS(610), + [anon_sym_let] = ACTIONS(610), + [anon_sym_loop] = ACTIONS(610), + [anon_sym_match] = ACTIONS(610), + [anon_sym_mod] = ACTIONS(610), + [anon_sym_pub] = ACTIONS(610), + [anon_sym_return] = ACTIONS(610), + [anon_sym_static] = ACTIONS(610), + [anon_sym_struct] = ACTIONS(610), + [anon_sym_trait] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_union] = ACTIONS(610), + [anon_sym_unsafe] = ACTIONS(610), + [anon_sym_use] = ACTIONS(610), + [anon_sym_while] = ACTIONS(610), + [anon_sym_POUND] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_EQ] = ACTIONS(610), + [anon_sym_extern] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_COLON_COLON] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(608), + [anon_sym_DOT_DOT] = ACTIONS(610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_BANG_EQ] = ACTIONS(608), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(610), + [anon_sym_PLUS_EQ] = ACTIONS(608), + [anon_sym_DASH_EQ] = ACTIONS(608), + [anon_sym_STAR_EQ] = ACTIONS(608), + [anon_sym_SLASH_EQ] = ACTIONS(608), + [anon_sym_PERCENT_EQ] = ACTIONS(608), + [anon_sym_AMP_EQ] = ACTIONS(608), + [anon_sym_PIPE_EQ] = ACTIONS(608), + [anon_sym_CARET_EQ] = ACTIONS(608), + [anon_sym_LT_LT_EQ] = ACTIONS(608), + [anon_sym_GT_GT_EQ] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), + [anon_sym_move] = ACTIONS(610), + [anon_sym_DOT] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(608), + [aux_sym_string_literal_token1] = ACTIONS(608), + [sym_char_literal] = ACTIONS(608), + [anon_sym_true] = ACTIONS(610), + [anon_sym_false] = ACTIONS(610), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(610), + [sym_super] = ACTIONS(610), + [sym_crate] = ACTIONS(610), + [sym_metavariable] = ACTIONS(608), + [sym_raw_string_literal] = ACTIONS(608), + [sym_float_literal] = ACTIONS(608), + [sym_block_comment] = ACTIONS(3), + }, [119] = { - [ts_builtin_sym_end] = ACTIONS(590), - [sym_identifier] = ACTIONS(592), - [anon_sym_SEMI] = ACTIONS(590), - [anon_sym_macro_rules_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_RBRACE] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(590), - [anon_sym_u8] = ACTIONS(592), - [anon_sym_i8] = ACTIONS(592), - [anon_sym_u16] = ACTIONS(592), - [anon_sym_i16] = ACTIONS(592), - [anon_sym_u32] = ACTIONS(592), - [anon_sym_i32] = ACTIONS(592), - [anon_sym_u64] = ACTIONS(592), - [anon_sym_i64] = ACTIONS(592), - [anon_sym_u128] = ACTIONS(592), - [anon_sym_i128] = ACTIONS(592), - [anon_sym_isize] = ACTIONS(592), - [anon_sym_usize] = ACTIONS(592), - [anon_sym_f32] = ACTIONS(592), - [anon_sym_f64] = ACTIONS(592), - [anon_sym_bool] = ACTIONS(592), - [anon_sym_str] = ACTIONS(592), - [anon_sym_char] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_as] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_const] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_enum] = ACTIONS(592), - [anon_sym_fn] = ACTIONS(592), - [anon_sym_for] = ACTIONS(592), - [anon_sym_if] = ACTIONS(592), - [anon_sym_impl] = ACTIONS(592), - [anon_sym_let] = ACTIONS(592), - [anon_sym_loop] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_mod] = ACTIONS(592), - [anon_sym_pub] = ACTIONS(592), - [anon_sym_return] = ACTIONS(592), - [anon_sym_static] = ACTIONS(592), - [anon_sym_struct] = ACTIONS(592), - [anon_sym_trait] = ACTIONS(592), - [anon_sym_type] = ACTIONS(592), - [anon_sym_union] = ACTIONS(592), - [anon_sym_unsafe] = ACTIONS(592), - [anon_sym_use] = ACTIONS(592), - [anon_sym_while] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(592), - [anon_sym_extern] = ACTIONS(592), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(590), - [anon_sym_AMP] = ACTIONS(592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_AMP_AMP] = ACTIONS(590), - [anon_sym_PIPE_PIPE] = ACTIONS(590), - [anon_sym_PIPE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_EQ_EQ] = ACTIONS(590), - [anon_sym_BANG_EQ] = ACTIONS(590), - [anon_sym_LT_EQ] = ACTIONS(590), - [anon_sym_GT_EQ] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_PERCENT] = ACTIONS(592), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_STAR_EQ] = ACTIONS(590), - [anon_sym_SLASH_EQ] = ACTIONS(590), - [anon_sym_PERCENT_EQ] = ACTIONS(590), - [anon_sym_AMP_EQ] = ACTIONS(590), - [anon_sym_PIPE_EQ] = ACTIONS(590), - [anon_sym_CARET_EQ] = ACTIONS(590), - [anon_sym_LT_LT_EQ] = ACTIONS(590), - [anon_sym_GT_GT_EQ] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_move] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(590), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(592), - [sym_super] = ACTIONS(592), - [sym_crate] = ACTIONS(592), - [sym_metavariable] = ACTIONS(590), - [sym_raw_string_literal] = ACTIONS(590), - [sym_float_literal] = ACTIONS(590), + [ts_builtin_sym_end] = ACTIONS(612), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(612), + [anon_sym_macro_rules_BANG] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_extern] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_DOT_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(614), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(614), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_move] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(612), + [aux_sym_string_literal_token1] = ACTIONS(612), + [sym_char_literal] = ACTIONS(612), + [anon_sym_true] = ACTIONS(614), + [anon_sym_false] = ACTIONS(614), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(612), + [sym_raw_string_literal] = ACTIONS(612), + [sym_float_literal] = ACTIONS(612), [sym_block_comment] = ACTIONS(3), }, [120] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1264), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1301), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30162,158 +32891,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [121] = { - [ts_builtin_sym_end] = ACTIONS(594), - [sym_identifier] = ACTIONS(596), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_macro_rules_BANG] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(596), - [anon_sym_QMARK] = ACTIONS(594), - [anon_sym_u8] = ACTIONS(596), - [anon_sym_i8] = ACTIONS(596), - [anon_sym_u16] = ACTIONS(596), - [anon_sym_i16] = ACTIONS(596), - [anon_sym_u32] = ACTIONS(596), - [anon_sym_i32] = ACTIONS(596), - [anon_sym_u64] = ACTIONS(596), - [anon_sym_i64] = ACTIONS(596), - [anon_sym_u128] = ACTIONS(596), - [anon_sym_i128] = ACTIONS(596), - [anon_sym_isize] = ACTIONS(596), - [anon_sym_usize] = ACTIONS(596), - [anon_sym_f32] = ACTIONS(596), - [anon_sym_f64] = ACTIONS(596), - [anon_sym_bool] = ACTIONS(596), - [anon_sym_str] = ACTIONS(596), - [anon_sym_char] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(596), - [anon_sym_as] = ACTIONS(596), - [anon_sym_async] = ACTIONS(596), - [anon_sym_break] = ACTIONS(596), - [anon_sym_const] = ACTIONS(596), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_default] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(596), - [anon_sym_fn] = ACTIONS(596), - [anon_sym_for] = ACTIONS(596), - [anon_sym_if] = ACTIONS(596), - [anon_sym_impl] = ACTIONS(596), - [anon_sym_let] = ACTIONS(596), - [anon_sym_loop] = ACTIONS(596), - [anon_sym_match] = ACTIONS(596), - [anon_sym_mod] = ACTIONS(596), - [anon_sym_pub] = ACTIONS(596), - [anon_sym_return] = ACTIONS(596), - [anon_sym_static] = ACTIONS(596), - [anon_sym_struct] = ACTIONS(596), - [anon_sym_trait] = ACTIONS(596), - [anon_sym_type] = ACTIONS(596), - [anon_sym_union] = ACTIONS(596), - [anon_sym_unsafe] = ACTIONS(596), - [anon_sym_use] = ACTIONS(596), - [anon_sym_while] = ACTIONS(596), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_BANG] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(596), - [anon_sym_extern] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(596), - [anon_sym_COLON_COLON] = ACTIONS(594), - [anon_sym_AMP] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [anon_sym_DOT_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(594), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(594), - [anon_sym_PIPE_PIPE] = ACTIONS(594), - [anon_sym_PIPE] = ACTIONS(596), - [anon_sym_CARET] = ACTIONS(596), - [anon_sym_EQ_EQ] = ACTIONS(594), - [anon_sym_BANG_EQ] = ACTIONS(594), - [anon_sym_LT_EQ] = ACTIONS(594), - [anon_sym_GT_EQ] = ACTIONS(594), - [anon_sym_LT_LT] = ACTIONS(596), - [anon_sym_GT_GT] = ACTIONS(596), - [anon_sym_SLASH] = ACTIONS(596), - [anon_sym_PERCENT] = ACTIONS(596), - [anon_sym_PLUS_EQ] = ACTIONS(594), - [anon_sym_DASH_EQ] = ACTIONS(594), - [anon_sym_STAR_EQ] = ACTIONS(594), - [anon_sym_SLASH_EQ] = ACTIONS(594), - [anon_sym_PERCENT_EQ] = ACTIONS(594), - [anon_sym_AMP_EQ] = ACTIONS(594), - [anon_sym_PIPE_EQ] = ACTIONS(594), - [anon_sym_CARET_EQ] = ACTIONS(594), - [anon_sym_LT_LT_EQ] = ACTIONS(594), - [anon_sym_GT_GT_EQ] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_move] = ACTIONS(596), - [anon_sym_DOT] = ACTIONS(596), - [sym_integer_literal] = ACTIONS(594), - [aux_sym_string_literal_token1] = ACTIONS(594), - [sym_char_literal] = ACTIONS(594), - [anon_sym_true] = ACTIONS(596), - [anon_sym_false] = ACTIONS(596), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(596), - [sym_super] = ACTIONS(596), - [sym_crate] = ACTIONS(596), - [sym_metavariable] = ACTIONS(594), - [sym_raw_string_literal] = ACTIONS(594), - [sym_float_literal] = ACTIONS(594), + [ts_builtin_sym_end] = ACTIONS(616), + [sym_identifier] = ACTIONS(618), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_macro_rules_BANG] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(616), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(618), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(618), + [anon_sym_i8] = ACTIONS(618), + [anon_sym_u16] = ACTIONS(618), + [anon_sym_i16] = ACTIONS(618), + [anon_sym_u32] = ACTIONS(618), + [anon_sym_i32] = ACTIONS(618), + [anon_sym_u64] = ACTIONS(618), + [anon_sym_i64] = ACTIONS(618), + [anon_sym_u128] = ACTIONS(618), + [anon_sym_i128] = ACTIONS(618), + [anon_sym_isize] = ACTIONS(618), + [anon_sym_usize] = ACTIONS(618), + [anon_sym_f32] = ACTIONS(618), + [anon_sym_f64] = ACTIONS(618), + [anon_sym_bool] = ACTIONS(618), + [anon_sym_str] = ACTIONS(618), + [anon_sym_char] = ACTIONS(618), + [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_as] = ACTIONS(618), + [anon_sym_async] = ACTIONS(618), + [anon_sym_break] = ACTIONS(618), + [anon_sym_const] = ACTIONS(618), + [anon_sym_continue] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_enum] = ACTIONS(618), + [anon_sym_fn] = ACTIONS(618), + [anon_sym_for] = ACTIONS(618), + [anon_sym_if] = ACTIONS(618), + [anon_sym_impl] = ACTIONS(618), + [anon_sym_let] = ACTIONS(618), + [anon_sym_loop] = ACTIONS(618), + [anon_sym_match] = ACTIONS(618), + [anon_sym_mod] = ACTIONS(618), + [anon_sym_pub] = ACTIONS(618), + [anon_sym_return] = ACTIONS(618), + [anon_sym_static] = ACTIONS(618), + [anon_sym_struct] = ACTIONS(618), + [anon_sym_trait] = ACTIONS(618), + [anon_sym_type] = ACTIONS(618), + [anon_sym_union] = ACTIONS(618), + [anon_sym_unsafe] = ACTIONS(618), + [anon_sym_use] = ACTIONS(618), + [anon_sym_while] = ACTIONS(618), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_BANG] = ACTIONS(618), + [anon_sym_EQ] = ACTIONS(618), + [anon_sym_extern] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_GT] = ACTIONS(618), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_CARET] = ACTIONS(618), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_GT_GT] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(618), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_yield] = ACTIONS(618), + [anon_sym_move] = ACTIONS(618), + [anon_sym_DOT] = ACTIONS(618), + [sym_integer_literal] = ACTIONS(616), + [aux_sym_string_literal_token1] = ACTIONS(616), + [sym_char_literal] = ACTIONS(616), + [anon_sym_true] = ACTIONS(618), + [anon_sym_false] = ACTIONS(618), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(618), + [sym_super] = ACTIONS(618), + [sym_crate] = ACTIONS(618), + [sym_metavariable] = ACTIONS(616), + [sym_raw_string_literal] = ACTIONS(616), + [sym_float_literal] = ACTIONS(616), [sym_block_comment] = ACTIONS(3), }, [122] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1305), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1164), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30354,7 +33083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30374,264 +33103,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [123] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1172), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [124] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1274), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1174), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [125] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1318), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1339), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30692,57 +33421,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [126] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -30774,12 +33503,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -30798,267 +33527,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [127] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1275), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1329), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [128] = { - [ts_builtin_sym_end] = ACTIONS(598), - [sym_identifier] = ACTIONS(600), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_macro_rules_BANG] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_u8] = ACTIONS(600), - [anon_sym_i8] = ACTIONS(600), - [anon_sym_u16] = ACTIONS(600), - [anon_sym_i16] = ACTIONS(600), - [anon_sym_u32] = ACTIONS(600), - [anon_sym_i32] = ACTIONS(600), - [anon_sym_u64] = ACTIONS(600), - [anon_sym_i64] = ACTIONS(600), - [anon_sym_u128] = ACTIONS(600), - [anon_sym_i128] = ACTIONS(600), - [anon_sym_isize] = ACTIONS(600), - [anon_sym_usize] = ACTIONS(600), - [anon_sym_f32] = ACTIONS(600), - [anon_sym_f64] = ACTIONS(600), - [anon_sym_bool] = ACTIONS(600), - [anon_sym_str] = ACTIONS(600), - [anon_sym_char] = ACTIONS(600), - [anon_sym_SQUOTE] = ACTIONS(600), - [anon_sym_as] = ACTIONS(600), - [anon_sym_async] = ACTIONS(600), - [anon_sym_break] = ACTIONS(600), - [anon_sym_const] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(600), - [anon_sym_default] = ACTIONS(600), - [anon_sym_enum] = ACTIONS(600), - [anon_sym_fn] = ACTIONS(600), - [anon_sym_for] = ACTIONS(600), - [anon_sym_if] = ACTIONS(600), - [anon_sym_impl] = ACTIONS(600), - [anon_sym_let] = ACTIONS(600), - [anon_sym_loop] = ACTIONS(600), - [anon_sym_match] = ACTIONS(600), - [anon_sym_mod] = ACTIONS(600), - [anon_sym_pub] = ACTIONS(600), - [anon_sym_return] = ACTIONS(600), - [anon_sym_static] = ACTIONS(600), - [anon_sym_struct] = ACTIONS(600), - [anon_sym_trait] = ACTIONS(600), - [anon_sym_type] = ACTIONS(600), - [anon_sym_union] = ACTIONS(600), - [anon_sym_unsafe] = ACTIONS(600), - [anon_sym_use] = ACTIONS(600), - [anon_sym_while] = ACTIONS(600), - [anon_sym_POUND] = ACTIONS(598), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(600), - [anon_sym_extern] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(600), - [anon_sym_GT] = ACTIONS(600), - [anon_sym_COLON_COLON] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT_EQ] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_PIPE] = ACTIONS(600), - [anon_sym_CARET] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(598), - [anon_sym_BANG_EQ] = ACTIONS(598), - [anon_sym_LT_EQ] = ACTIONS(598), - [anon_sym_GT_EQ] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(600), - [anon_sym_PLUS_EQ] = ACTIONS(598), - [anon_sym_DASH_EQ] = ACTIONS(598), - [anon_sym_STAR_EQ] = ACTIONS(598), - [anon_sym_SLASH_EQ] = ACTIONS(598), - [anon_sym_PERCENT_EQ] = ACTIONS(598), - [anon_sym_AMP_EQ] = ACTIONS(598), - [anon_sym_PIPE_EQ] = ACTIONS(598), - [anon_sym_CARET_EQ] = ACTIONS(598), - [anon_sym_LT_LT_EQ] = ACTIONS(598), - [anon_sym_GT_GT_EQ] = ACTIONS(598), - [anon_sym_yield] = ACTIONS(600), - [anon_sym_move] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(600), - [sym_integer_literal] = ACTIONS(598), - [aux_sym_string_literal_token1] = ACTIONS(598), - [sym_char_literal] = ACTIONS(598), - [anon_sym_true] = ACTIONS(600), - [anon_sym_false] = ACTIONS(600), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_crate] = ACTIONS(600), - [sym_metavariable] = ACTIONS(598), - [sym_raw_string_literal] = ACTIONS(598), - [sym_float_literal] = ACTIONS(598), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1118), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [129] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1312), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(241), - [sym_if_let_expression] = STATE(241), - [sym_match_expression] = STATE(241), - [sym_while_expression] = STATE(241), - [sym_while_let_expression] = STATE(241), - [sym_loop_expression] = STATE(241), - [sym_for_expression] = STATE(241), - [sym_const_block] = STATE(241), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2554), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(241), - [sym_async_block] = STATE(241), - [sym_block] = STATE(241), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -31079,19 +33808,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(604), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(606), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(608), - [anon_sym_if] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(612), - [anon_sym_match] = ACTIONS(614), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(616), - [anon_sym_while] = ACTIONS(618), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -31116,52 +33845,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [130] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1297), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1177), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31202,7 +33931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31328,264 +34057,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [132] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [133] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1290), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [134] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1332), - [sym_macro_invocation] = STATE(801), + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1333), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31645,162 +34162,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [136] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1313), - [sym_macro_invocation] = STATE(801), + [133] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(233), + [sym_if_let_expression] = STATE(233), + [sym_match_expression] = STATE(233), + [sym_while_expression] = STATE(233), + [sym_while_let_expression] = STATE(233), + [sym_loop_expression] = STATE(233), + [sym_for_expression] = STATE(233), + [sym_const_block] = STATE(233), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2602), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(233), + [sym_async_block] = STATE(233), + [sym_block] = STATE(233), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(582), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -31821,19 +34232,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(584), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(586), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(594), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_while] = ACTIONS(598), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -31857,53 +34268,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1324), - [sym_macro_invocation] = STATE(801), + [134] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31963,442 +34374,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1280), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [139] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1246), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [140] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [141] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1292), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [142] = { + [135] = { [ts_builtin_sym_end] = ACTIONS(624), [sym_identifier] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(624), + [anon_sym_SEMI] = ACTIONS(568), [anon_sym_macro_rules_BANG] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_LPAREN] = ACTIONS(568), [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_QMARK] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_QMARK] = ACTIONS(568), [anon_sym_u8] = ACTIONS(626), [anon_sym_i8] = ACTIONS(626), [anon_sym_u16] = ACTIONS(626), @@ -32417,7 +34404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(626), [anon_sym_char] = ACTIONS(626), [anon_sym_SQUOTE] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), + [anon_sym_as] = ACTIONS(566), [anon_sym_async] = ACTIONS(626), [anon_sym_break] = ACTIONS(626), [anon_sym_const] = ACTIONS(626), @@ -32444,41 +34431,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(626), [anon_sym_POUND] = ACTIONS(624), [anon_sym_BANG] = ACTIONS(626), - [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(566), [anon_sym_extern] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(566), [anon_sym_COLON_COLON] = ACTIONS(624), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(624), - [anon_sym_DOT_DOT] = ACTIONS(626), - [anon_sym_DOT_DOT_EQ] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_CARET] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_BANG_EQ] = ACTIONS(624), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_SLASH] = ACTIONS(626), - [anon_sym_PERCENT] = ACTIONS(626), - [anon_sym_PLUS_EQ] = ACTIONS(624), - [anon_sym_DASH_EQ] = ACTIONS(624), - [anon_sym_STAR_EQ] = ACTIONS(624), - [anon_sym_SLASH_EQ] = ACTIONS(624), - [anon_sym_PERCENT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(624), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT_EQ] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), [anon_sym_yield] = ACTIONS(626), [anon_sym_move] = ACTIONS(626), - [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(566), [sym_integer_literal] = ACTIONS(624), [aux_sym_string_literal_token1] = ACTIONS(624), [sym_char_literal] = ACTIONS(624), @@ -32493,7 +34480,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(624), [sym_block_comment] = ACTIONS(3), }, - [143] = { + [136] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [137] = { [ts_builtin_sym_end] = ACTIONS(628), [sym_identifier] = ACTIONS(630), [anon_sym_SEMI] = ACTIONS(628), @@ -32599,15 +34692,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(628), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [ts_builtin_sym_end] = ACTIONS(632), - [sym_identifier] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(632), - [anon_sym_macro_rules_BANG] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(632), + [138] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [139] = { + [ts_builtin_sym_end] = ACTIONS(632), + [sym_identifier] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(632), + [anon_sym_macro_rules_BANG] = ACTIONS(632), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(632), [anon_sym_PLUS] = ACTIONS(634), [anon_sym_STAR] = ACTIONS(634), [anon_sym_QMARK] = ACTIONS(632), @@ -32705,7 +34904,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(632), [sym_block_comment] = ACTIONS(3), }, - [145] = { + [140] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [141] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1284), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [142] = { [ts_builtin_sym_end] = ACTIONS(636), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(636), @@ -32811,265 +35222,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(636), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1295), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [147] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1230), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [148] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1303), - [sym_macro_invocation] = STATE(801), + [143] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1340), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33129,58 +35328,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [144] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -33212,12 +35411,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -33235,56 +35434,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1331), - [sym_macro_invocation] = STATE(801), + [145] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1162), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(233), - [sym_if_let_expression] = STATE(233), - [sym_match_expression] = STATE(233), - [sym_while_expression] = STATE(233), - [sym_while_let_expression] = STATE(233), - [sym_loop_expression] = STATE(233), - [sym_for_expression] = STATE(233), - [sym_const_block] = STATE(233), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2554), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(233), - [sym_async_block] = STATE(233), - [sym_block] = STATE(233), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -33305,24 +35504,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(604), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(606), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(608), - [anon_sym_if] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(612), - [anon_sym_match] = ACTIONS(614), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(616), - [anon_sym_while] = ACTIONS(618), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33341,53 +35540,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [151] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1326), - [sym_macro_invocation] = STATE(801), + [146] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1336), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33447,58 +35646,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1232), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [147] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1309), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -33530,12 +35729,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -33553,113 +35752,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1293), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [148] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1331), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(233), + [sym_if_let_expression] = STATE(233), + [sym_match_expression] = STATE(233), + [sym_while_expression] = STATE(233), + [sym_while_let_expression] = STATE(233), + [sym_loop_expression] = STATE(233), + [sym_for_expression] = STATE(233), + [sym_const_block] = STATE(233), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2602), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(233), + [sym_async_block] = STATE(233), + [sym_block] = STATE(233), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(582), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), + [anon_sym_async] = ACTIONS(584), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(586), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(594), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_while] = ACTIONS(598), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [154] = { + [149] = { [ts_builtin_sym_end] = ACTIONS(640), [sym_identifier] = ACTIONS(642), [anon_sym_SEMI] = ACTIONS(640), @@ -33765,431 +35964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(640), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [156] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1278), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [157] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [158] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1228), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [159] = { + [150] = { [ts_builtin_sym_end] = ACTIONS(644), [sym_identifier] = ACTIONS(646), [anon_sym_SEMI] = ACTIONS(644), @@ -34295,265 +36070,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(644), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1260), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [151] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1185), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [161] = { - [ts_builtin_sym_end] = ACTIONS(648), - [sym_identifier] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(648), - [anon_sym_macro_rules_BANG] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(648), - [anon_sym_u8] = ACTIONS(650), - [anon_sym_i8] = ACTIONS(650), - [anon_sym_u16] = ACTIONS(650), - [anon_sym_i16] = ACTIONS(650), - [anon_sym_u32] = ACTIONS(650), - [anon_sym_i32] = ACTIONS(650), - [anon_sym_u64] = ACTIONS(650), - [anon_sym_i64] = ACTIONS(650), - [anon_sym_u128] = ACTIONS(650), - [anon_sym_i128] = ACTIONS(650), - [anon_sym_isize] = ACTIONS(650), - [anon_sym_usize] = ACTIONS(650), - [anon_sym_f32] = ACTIONS(650), - [anon_sym_f64] = ACTIONS(650), - [anon_sym_bool] = ACTIONS(650), - [anon_sym_str] = ACTIONS(650), - [anon_sym_char] = ACTIONS(650), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_as] = ACTIONS(650), - [anon_sym_async] = ACTIONS(650), - [anon_sym_break] = ACTIONS(650), - [anon_sym_const] = ACTIONS(650), - [anon_sym_continue] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), - [anon_sym_enum] = ACTIONS(650), - [anon_sym_fn] = ACTIONS(650), - [anon_sym_for] = ACTIONS(650), - [anon_sym_if] = ACTIONS(650), - [anon_sym_impl] = ACTIONS(650), - [anon_sym_let] = ACTIONS(650), - [anon_sym_loop] = ACTIONS(650), - [anon_sym_match] = ACTIONS(650), - [anon_sym_mod] = ACTIONS(650), - [anon_sym_pub] = ACTIONS(650), - [anon_sym_return] = ACTIONS(650), - [anon_sym_static] = ACTIONS(650), - [anon_sym_struct] = ACTIONS(650), - [anon_sym_trait] = ACTIONS(650), - [anon_sym_type] = ACTIONS(650), - [anon_sym_union] = ACTIONS(650), - [anon_sym_unsafe] = ACTIONS(650), - [anon_sym_use] = ACTIONS(650), - [anon_sym_while] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(648), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_extern] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_COLON_COLON] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(648), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_yield] = ACTIONS(650), - [anon_sym_move] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [sym_integer_literal] = ACTIONS(648), - [aux_sym_string_literal_token1] = ACTIONS(648), - [sym_char_literal] = ACTIONS(648), - [anon_sym_true] = ACTIONS(650), - [anon_sym_false] = ACTIONS(650), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(650), - [sym_super] = ACTIONS(650), - [sym_crate] = ACTIONS(650), - [sym_metavariable] = ACTIONS(648), - [sym_raw_string_literal] = ACTIONS(648), - [sym_float_literal] = ACTIONS(648), - [sym_block_comment] = ACTIONS(3), - }, - [162] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), + [152] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34594,7 +36263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -34613,162 +36282,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(652), - [sym_identifier] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_macro_rules_BANG] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(654), - [anon_sym_i8] = ACTIONS(654), - [anon_sym_u16] = ACTIONS(654), - [anon_sym_i16] = ACTIONS(654), - [anon_sym_u32] = ACTIONS(654), - [anon_sym_i32] = ACTIONS(654), - [anon_sym_u64] = ACTIONS(654), - [anon_sym_i64] = ACTIONS(654), - [anon_sym_u128] = ACTIONS(654), - [anon_sym_i128] = ACTIONS(654), - [anon_sym_isize] = ACTIONS(654), - [anon_sym_usize] = ACTIONS(654), - [anon_sym_f32] = ACTIONS(654), - [anon_sym_f64] = ACTIONS(654), - [anon_sym_bool] = ACTIONS(654), - [anon_sym_str] = ACTIONS(654), - [anon_sym_char] = ACTIONS(654), - [anon_sym_SQUOTE] = ACTIONS(654), - [anon_sym_as] = ACTIONS(654), - [anon_sym_async] = ACTIONS(654), - [anon_sym_break] = ACTIONS(654), - [anon_sym_const] = ACTIONS(654), - [anon_sym_continue] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_enum] = ACTIONS(654), - [anon_sym_fn] = ACTIONS(654), - [anon_sym_for] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_impl] = ACTIONS(654), - [anon_sym_let] = ACTIONS(654), - [anon_sym_loop] = ACTIONS(654), - [anon_sym_match] = ACTIONS(654), - [anon_sym_mod] = ACTIONS(654), - [anon_sym_pub] = ACTIONS(654), - [anon_sym_return] = ACTIONS(654), - [anon_sym_static] = ACTIONS(654), - [anon_sym_struct] = ACTIONS(654), - [anon_sym_trait] = ACTIONS(654), - [anon_sym_type] = ACTIONS(654), - [anon_sym_union] = ACTIONS(654), - [anon_sym_unsafe] = ACTIONS(654), - [anon_sym_use] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_POUND] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_extern] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_COLON_COLON] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(652), - [anon_sym_DOT_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT_EQ] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_SLASH_EQ] = ACTIONS(652), - [anon_sym_PERCENT_EQ] = ACTIONS(652), - [anon_sym_AMP_EQ] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(652), - [anon_sym_LT_LT_EQ] = ACTIONS(652), - [anon_sym_GT_GT_EQ] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_move] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(654), - [sym_integer_literal] = ACTIONS(652), - [aux_sym_string_literal_token1] = ACTIONS(652), - [sym_char_literal] = ACTIONS(652), - [anon_sym_true] = ACTIONS(654), - [anon_sym_false] = ACTIONS(654), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(654), - [sym_super] = ACTIONS(654), - [sym_crate] = ACTIONS(654), - [sym_metavariable] = ACTIONS(652), - [sym_raw_string_literal] = ACTIONS(652), - [sym_float_literal] = ACTIONS(652), - [sym_block_comment] = ACTIONS(3), - }, - [164] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(801), + [153] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1323), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(233), - [sym_if_let_expression] = STATE(233), - [sym_match_expression] = STATE(233), - [sym_while_expression] = STATE(233), - [sym_while_let_expression] = STATE(233), - [sym_loop_expression] = STATE(233), - [sym_for_expression] = STATE(233), - [sym_const_block] = STATE(233), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2554), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(233), - [sym_async_block] = STATE(233), - [sym_block] = STATE(233), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -34789,19 +36352,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(604), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(606), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(608), - [anon_sym_if] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(612), - [anon_sym_match] = ACTIONS(614), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(616), - [anon_sym_while] = ACTIONS(618), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -34825,53 +36388,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [165] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1250), - [sym_macro_invocation] = STATE(801), + [154] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1324), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34931,371 +36494,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [166] = { - [ts_builtin_sym_end] = ACTIONS(656), - [sym_identifier] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(656), - [anon_sym_macro_rules_BANG] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(658), - [anon_sym_i8] = ACTIONS(658), - [anon_sym_u16] = ACTIONS(658), - [anon_sym_i16] = ACTIONS(658), - [anon_sym_u32] = ACTIONS(658), - [anon_sym_i32] = ACTIONS(658), - [anon_sym_u64] = ACTIONS(658), - [anon_sym_i64] = ACTIONS(658), - [anon_sym_u128] = ACTIONS(658), - [anon_sym_i128] = ACTIONS(658), - [anon_sym_isize] = ACTIONS(658), - [anon_sym_usize] = ACTIONS(658), - [anon_sym_f32] = ACTIONS(658), - [anon_sym_f64] = ACTIONS(658), - [anon_sym_bool] = ACTIONS(658), - [anon_sym_str] = ACTIONS(658), - [anon_sym_char] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_as] = ACTIONS(658), - [anon_sym_async] = ACTIONS(658), - [anon_sym_break] = ACTIONS(658), - [anon_sym_const] = ACTIONS(658), - [anon_sym_continue] = ACTIONS(658), - [anon_sym_default] = ACTIONS(658), - [anon_sym_enum] = ACTIONS(658), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(658), - [anon_sym_if] = ACTIONS(658), - [anon_sym_impl] = ACTIONS(658), - [anon_sym_let] = ACTIONS(658), - [anon_sym_loop] = ACTIONS(658), - [anon_sym_match] = ACTIONS(658), - [anon_sym_mod] = ACTIONS(658), - [anon_sym_pub] = ACTIONS(658), - [anon_sym_return] = ACTIONS(658), - [anon_sym_static] = ACTIONS(658), - [anon_sym_struct] = ACTIONS(658), - [anon_sym_trait] = ACTIONS(658), - [anon_sym_type] = ACTIONS(658), - [anon_sym_union] = ACTIONS(658), - [anon_sym_unsafe] = ACTIONS(658), - [anon_sym_use] = ACTIONS(658), - [anon_sym_while] = ACTIONS(658), - [anon_sym_POUND] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_EQ] = ACTIONS(658), - [anon_sym_extern] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_COLON_COLON] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(656), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_AMP_AMP] = ACTIONS(656), - [anon_sym_PIPE_PIPE] = ACTIONS(656), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(656), - [anon_sym_BANG_EQ] = ACTIONS(656), - [anon_sym_LT_EQ] = ACTIONS(656), - [anon_sym_GT_EQ] = ACTIONS(656), - [anon_sym_LT_LT] = ACTIONS(658), - [anon_sym_GT_GT] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_PERCENT] = ACTIONS(658), - [anon_sym_PLUS_EQ] = ACTIONS(656), - [anon_sym_DASH_EQ] = ACTIONS(656), - [anon_sym_STAR_EQ] = ACTIONS(656), - [anon_sym_SLASH_EQ] = ACTIONS(656), - [anon_sym_PERCENT_EQ] = ACTIONS(656), - [anon_sym_AMP_EQ] = ACTIONS(656), - [anon_sym_PIPE_EQ] = ACTIONS(656), - [anon_sym_CARET_EQ] = ACTIONS(656), - [anon_sym_LT_LT_EQ] = ACTIONS(656), - [anon_sym_GT_GT_EQ] = ACTIONS(656), - [anon_sym_yield] = ACTIONS(658), - [anon_sym_move] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(658), - [sym_integer_literal] = ACTIONS(656), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(656), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(658), - [sym_super] = ACTIONS(658), - [sym_crate] = ACTIONS(658), - [sym_metavariable] = ACTIONS(656), - [sym_raw_string_literal] = ACTIONS(656), - [sym_float_literal] = ACTIONS(656), - [sym_block_comment] = ACTIONS(3), - }, - [167] = { - [ts_builtin_sym_end] = ACTIONS(660), - [sym_identifier] = ACTIONS(662), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_macro_rules_BANG] = ACTIONS(660), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_RBRACE] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(660), - [anon_sym_u8] = ACTIONS(662), - [anon_sym_i8] = ACTIONS(662), - [anon_sym_u16] = ACTIONS(662), - [anon_sym_i16] = ACTIONS(662), - [anon_sym_u32] = ACTIONS(662), - [anon_sym_i32] = ACTIONS(662), - [anon_sym_u64] = ACTIONS(662), - [anon_sym_i64] = ACTIONS(662), - [anon_sym_u128] = ACTIONS(662), - [anon_sym_i128] = ACTIONS(662), - [anon_sym_isize] = ACTIONS(662), - [anon_sym_usize] = ACTIONS(662), - [anon_sym_f32] = ACTIONS(662), - [anon_sym_f64] = ACTIONS(662), - [anon_sym_bool] = ACTIONS(662), - [anon_sym_str] = ACTIONS(662), - [anon_sym_char] = ACTIONS(662), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_as] = ACTIONS(662), - [anon_sym_async] = ACTIONS(662), - [anon_sym_break] = ACTIONS(662), - [anon_sym_const] = ACTIONS(662), - [anon_sym_continue] = ACTIONS(662), - [anon_sym_default] = ACTIONS(662), - [anon_sym_enum] = ACTIONS(662), - [anon_sym_fn] = ACTIONS(662), - [anon_sym_for] = ACTIONS(662), - [anon_sym_if] = ACTIONS(662), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_let] = ACTIONS(662), - [anon_sym_loop] = ACTIONS(662), - [anon_sym_match] = ACTIONS(662), - [anon_sym_mod] = ACTIONS(662), - [anon_sym_pub] = ACTIONS(662), - [anon_sym_return] = ACTIONS(662), - [anon_sym_static] = ACTIONS(662), - [anon_sym_struct] = ACTIONS(662), - [anon_sym_trait] = ACTIONS(662), - [anon_sym_type] = ACTIONS(662), - [anon_sym_union] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(662), - [anon_sym_use] = ACTIONS(662), - [anon_sym_while] = ACTIONS(662), - [anon_sym_POUND] = ACTIONS(660), - [anon_sym_BANG] = ACTIONS(662), - [anon_sym_EQ] = ACTIONS(662), - [anon_sym_extern] = ACTIONS(662), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_COLON_COLON] = ACTIONS(660), - [anon_sym_AMP] = ACTIONS(662), - [anon_sym_DOT_DOT_DOT] = ACTIONS(660), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_DOT_DOT_EQ] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(660), - [anon_sym_PIPE_PIPE] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(662), - [anon_sym_CARET] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(660), - [anon_sym_LT_LT] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_SLASH] = ACTIONS(662), - [anon_sym_PERCENT] = ACTIONS(662), - [anon_sym_PLUS_EQ] = ACTIONS(660), - [anon_sym_DASH_EQ] = ACTIONS(660), - [anon_sym_STAR_EQ] = ACTIONS(660), - [anon_sym_SLASH_EQ] = ACTIONS(660), - [anon_sym_PERCENT_EQ] = ACTIONS(660), - [anon_sym_AMP_EQ] = ACTIONS(660), - [anon_sym_PIPE_EQ] = ACTIONS(660), - [anon_sym_CARET_EQ] = ACTIONS(660), - [anon_sym_LT_LT_EQ] = ACTIONS(660), - [anon_sym_GT_GT_EQ] = ACTIONS(660), - [anon_sym_yield] = ACTIONS(662), - [anon_sym_move] = ACTIONS(662), - [anon_sym_DOT] = ACTIONS(662), - [sym_integer_literal] = ACTIONS(660), - [aux_sym_string_literal_token1] = ACTIONS(660), - [sym_char_literal] = ACTIONS(660), - [anon_sym_true] = ACTIONS(662), - [anon_sym_false] = ACTIONS(662), + [155] = { + [ts_builtin_sym_end] = ACTIONS(648), + [sym_identifier] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_macro_rules_BANG] = ACTIONS(648), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(648), + [anon_sym_u8] = ACTIONS(650), + [anon_sym_i8] = ACTIONS(650), + [anon_sym_u16] = ACTIONS(650), + [anon_sym_i16] = ACTIONS(650), + [anon_sym_u32] = ACTIONS(650), + [anon_sym_i32] = ACTIONS(650), + [anon_sym_u64] = ACTIONS(650), + [anon_sym_i64] = ACTIONS(650), + [anon_sym_u128] = ACTIONS(650), + [anon_sym_i128] = ACTIONS(650), + [anon_sym_isize] = ACTIONS(650), + [anon_sym_usize] = ACTIONS(650), + [anon_sym_f32] = ACTIONS(650), + [anon_sym_f64] = ACTIONS(650), + [anon_sym_bool] = ACTIONS(650), + [anon_sym_str] = ACTIONS(650), + [anon_sym_char] = ACTIONS(650), + [anon_sym_SQUOTE] = ACTIONS(650), + [anon_sym_as] = ACTIONS(650), + [anon_sym_async] = ACTIONS(650), + [anon_sym_break] = ACTIONS(650), + [anon_sym_const] = ACTIONS(650), + [anon_sym_continue] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_enum] = ACTIONS(650), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_for] = ACTIONS(650), + [anon_sym_if] = ACTIONS(650), + [anon_sym_impl] = ACTIONS(650), + [anon_sym_let] = ACTIONS(650), + [anon_sym_loop] = ACTIONS(650), + [anon_sym_match] = ACTIONS(650), + [anon_sym_mod] = ACTIONS(650), + [anon_sym_pub] = ACTIONS(650), + [anon_sym_return] = ACTIONS(650), + [anon_sym_static] = ACTIONS(650), + [anon_sym_struct] = ACTIONS(650), + [anon_sym_trait] = ACTIONS(650), + [anon_sym_type] = ACTIONS(650), + [anon_sym_union] = ACTIONS(650), + [anon_sym_unsafe] = ACTIONS(650), + [anon_sym_use] = ACTIONS(650), + [anon_sym_while] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_extern] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(648), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(648), + [anon_sym_DASH_EQ] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(648), + [anon_sym_SLASH_EQ] = ACTIONS(648), + [anon_sym_PERCENT_EQ] = ACTIONS(648), + [anon_sym_AMP_EQ] = ACTIONS(648), + [anon_sym_PIPE_EQ] = ACTIONS(648), + [anon_sym_CARET_EQ] = ACTIONS(648), + [anon_sym_LT_LT_EQ] = ACTIONS(648), + [anon_sym_GT_GT_EQ] = ACTIONS(648), + [anon_sym_yield] = ACTIONS(650), + [anon_sym_move] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [sym_integer_literal] = ACTIONS(648), + [aux_sym_string_literal_token1] = ACTIONS(648), + [sym_char_literal] = ACTIONS(648), + [anon_sym_true] = ACTIONS(650), + [anon_sym_false] = ACTIONS(650), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(662), - [sym_super] = ACTIONS(662), - [sym_crate] = ACTIONS(662), - [sym_metavariable] = ACTIONS(660), - [sym_raw_string_literal] = ACTIONS(660), - [sym_float_literal] = ACTIONS(660), + [sym_self] = ACTIONS(650), + [sym_super] = ACTIONS(650), + [sym_crate] = ACTIONS(650), + [sym_metavariable] = ACTIONS(648), + [sym_raw_string_literal] = ACTIONS(648), + [sym_float_literal] = ACTIONS(648), [sym_block_comment] = ACTIONS(3), }, - [168] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [156] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1257), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1300), - [sym_macro_invocation] = STATE(801), + [157] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1187), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35336,7 +36793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -35355,53 +36812,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [170] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1243), - [sym_macro_invocation] = STATE(801), + [158] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1343), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35461,53 +36918,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [171] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1315), - [sym_macro_invocation] = STATE(801), + [159] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1314), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35567,265 +37024,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [172] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1159), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [160] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [173] = { - [ts_builtin_sym_end] = ACTIONS(664), - [sym_identifier] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(664), - [anon_sym_macro_rules_BANG] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(664), - [anon_sym_RBRACE] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(666), - [anon_sym_as] = ACTIONS(666), - [anon_sym_async] = ACTIONS(666), - [anon_sym_break] = ACTIONS(666), - [anon_sym_const] = ACTIONS(666), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_enum] = ACTIONS(666), - [anon_sym_fn] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_impl] = ACTIONS(666), - [anon_sym_let] = ACTIONS(666), - [anon_sym_loop] = ACTIONS(666), - [anon_sym_match] = ACTIONS(666), - [anon_sym_mod] = ACTIONS(666), - [anon_sym_pub] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_static] = ACTIONS(666), - [anon_sym_struct] = ACTIONS(666), - [anon_sym_trait] = ACTIONS(666), - [anon_sym_type] = ACTIONS(666), - [anon_sym_union] = ACTIONS(666), - [anon_sym_unsafe] = ACTIONS(666), - [anon_sym_use] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_extern] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_COLON_COLON] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(664), - [anon_sym_DOT_DOT] = ACTIONS(666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_move] = ACTIONS(666), - [anon_sym_DOT] = ACTIONS(666), - [sym_integer_literal] = ACTIONS(664), - [aux_sym_string_literal_token1] = ACTIONS(664), - [sym_char_literal] = ACTIONS(664), - [anon_sym_true] = ACTIONS(666), - [anon_sym_false] = ACTIONS(666), + [161] = { + [ts_builtin_sym_end] = ACTIONS(652), + [sym_identifier] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_macro_rules_BANG] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_QMARK] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(654), + [anon_sym_as] = ACTIONS(654), + [anon_sym_async] = ACTIONS(654), + [anon_sym_break] = ACTIONS(654), + [anon_sym_const] = ACTIONS(654), + [anon_sym_continue] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_enum] = ACTIONS(654), + [anon_sym_fn] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_impl] = ACTIONS(654), + [anon_sym_let] = ACTIONS(654), + [anon_sym_loop] = ACTIONS(654), + [anon_sym_match] = ACTIONS(654), + [anon_sym_mod] = ACTIONS(654), + [anon_sym_pub] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_static] = ACTIONS(654), + [anon_sym_struct] = ACTIONS(654), + [anon_sym_trait] = ACTIONS(654), + [anon_sym_type] = ACTIONS(654), + [anon_sym_union] = ACTIONS(654), + [anon_sym_unsafe] = ACTIONS(654), + [anon_sym_use] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_extern] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_EQ] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_AMP_AMP] = ACTIONS(652), + [anon_sym_PIPE_PIPE] = ACTIONS(652), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_LT_EQ] = ACTIONS(652), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(652), + [anon_sym_DASH_EQ] = ACTIONS(652), + [anon_sym_STAR_EQ] = ACTIONS(652), + [anon_sym_SLASH_EQ] = ACTIONS(652), + [anon_sym_PERCENT_EQ] = ACTIONS(652), + [anon_sym_AMP_EQ] = ACTIONS(652), + [anon_sym_PIPE_EQ] = ACTIONS(652), + [anon_sym_CARET_EQ] = ACTIONS(652), + [anon_sym_LT_LT_EQ] = ACTIONS(652), + [anon_sym_GT_GT_EQ] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(654), + [anon_sym_move] = ACTIONS(654), + [anon_sym_DOT] = ACTIONS(654), + [sym_integer_literal] = ACTIONS(652), + [aux_sym_string_literal_token1] = ACTIONS(652), + [sym_char_literal] = ACTIONS(652), + [anon_sym_true] = ACTIONS(654), + [anon_sym_false] = ACTIONS(654), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(666), - [sym_super] = ACTIONS(666), - [sym_crate] = ACTIONS(666), - [sym_metavariable] = ACTIONS(664), - [sym_raw_string_literal] = ACTIONS(664), - [sym_float_literal] = ACTIONS(664), + [sym_self] = ACTIONS(654), + [sym_super] = ACTIONS(654), + [sym_crate] = ACTIONS(654), + [sym_metavariable] = ACTIONS(652), + [sym_raw_string_literal] = ACTIONS(652), + [sym_float_literal] = ACTIONS(652), [sym_block_comment] = ACTIONS(3), }, - [174] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1248), - [sym_macro_invocation] = STATE(801), + [162] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1338), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35885,58 +37342,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [175] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1227), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [163] = { + [ts_builtin_sym_end] = ACTIONS(656), + [sym_identifier] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(656), + [anon_sym_macro_rules_BANG] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_u8] = ACTIONS(658), + [anon_sym_i8] = ACTIONS(658), + [anon_sym_u16] = ACTIONS(658), + [anon_sym_i16] = ACTIONS(658), + [anon_sym_u32] = ACTIONS(658), + [anon_sym_i32] = ACTIONS(658), + [anon_sym_u64] = ACTIONS(658), + [anon_sym_i64] = ACTIONS(658), + [anon_sym_u128] = ACTIONS(658), + [anon_sym_i128] = ACTIONS(658), + [anon_sym_isize] = ACTIONS(658), + [anon_sym_usize] = ACTIONS(658), + [anon_sym_f32] = ACTIONS(658), + [anon_sym_f64] = ACTIONS(658), + [anon_sym_bool] = ACTIONS(658), + [anon_sym_str] = ACTIONS(658), + [anon_sym_char] = ACTIONS(658), + [anon_sym_SQUOTE] = ACTIONS(658), + [anon_sym_as] = ACTIONS(658), + [anon_sym_async] = ACTIONS(658), + [anon_sym_break] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_continue] = ACTIONS(658), + [anon_sym_default] = ACTIONS(658), + [anon_sym_enum] = ACTIONS(658), + [anon_sym_fn] = ACTIONS(658), + [anon_sym_for] = ACTIONS(658), + [anon_sym_if] = ACTIONS(658), + [anon_sym_impl] = ACTIONS(658), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(658), + [anon_sym_match] = ACTIONS(658), + [anon_sym_mod] = ACTIONS(658), + [anon_sym_pub] = ACTIONS(658), + [anon_sym_return] = ACTIONS(658), + [anon_sym_static] = ACTIONS(658), + [anon_sym_struct] = ACTIONS(658), + [anon_sym_trait] = ACTIONS(658), + [anon_sym_type] = ACTIONS(658), + [anon_sym_union] = ACTIONS(658), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_use] = ACTIONS(658), + [anon_sym_while] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(656), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_extern] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_COLON_COLON] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_PERCENT] = ACTIONS(658), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_yield] = ACTIONS(658), + [anon_sym_move] = ACTIONS(658), + [anon_sym_DOT] = ACTIONS(658), + [sym_integer_literal] = ACTIONS(656), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(656), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(658), + [sym_super] = ACTIONS(658), + [sym_crate] = ACTIONS(658), + [sym_metavariable] = ACTIONS(656), + [sym_raw_string_literal] = ACTIONS(656), + [sym_float_literal] = ACTIONS(656), + [sym_block_comment] = ACTIONS(3), + }, + [164] = { + [ts_builtin_sym_end] = ACTIONS(660), + [sym_identifier] = ACTIONS(662), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_macro_rules_BANG] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_LBRACE] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_QMARK] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(662), + [anon_sym_i8] = ACTIONS(662), + [anon_sym_u16] = ACTIONS(662), + [anon_sym_i16] = ACTIONS(662), + [anon_sym_u32] = ACTIONS(662), + [anon_sym_i32] = ACTIONS(662), + [anon_sym_u64] = ACTIONS(662), + [anon_sym_i64] = ACTIONS(662), + [anon_sym_u128] = ACTIONS(662), + [anon_sym_i128] = ACTIONS(662), + [anon_sym_isize] = ACTIONS(662), + [anon_sym_usize] = ACTIONS(662), + [anon_sym_f32] = ACTIONS(662), + [anon_sym_f64] = ACTIONS(662), + [anon_sym_bool] = ACTIONS(662), + [anon_sym_str] = ACTIONS(662), + [anon_sym_char] = ACTIONS(662), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_as] = ACTIONS(662), + [anon_sym_async] = ACTIONS(662), + [anon_sym_break] = ACTIONS(662), + [anon_sym_const] = ACTIONS(662), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_default] = ACTIONS(662), + [anon_sym_enum] = ACTIONS(662), + [anon_sym_fn] = ACTIONS(662), + [anon_sym_for] = ACTIONS(662), + [anon_sym_if] = ACTIONS(662), + [anon_sym_impl] = ACTIONS(662), + [anon_sym_let] = ACTIONS(662), + [anon_sym_loop] = ACTIONS(662), + [anon_sym_match] = ACTIONS(662), + [anon_sym_mod] = ACTIONS(662), + [anon_sym_pub] = ACTIONS(662), + [anon_sym_return] = ACTIONS(662), + [anon_sym_static] = ACTIONS(662), + [anon_sym_struct] = ACTIONS(662), + [anon_sym_trait] = ACTIONS(662), + [anon_sym_type] = ACTIONS(662), + [anon_sym_union] = ACTIONS(662), + [anon_sym_unsafe] = ACTIONS(662), + [anon_sym_use] = ACTIONS(662), + [anon_sym_while] = ACTIONS(662), + [anon_sym_POUND] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_EQ] = ACTIONS(662), + [anon_sym_extern] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(662), + [anon_sym_GT] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(660), + [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT_EQ] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(662), + [anon_sym_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ] = ACTIONS(660), + [anon_sym_LT_EQ] = ACTIONS(660), + [anon_sym_GT_EQ] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(662), + [anon_sym_SLASH] = ACTIONS(662), + [anon_sym_PERCENT] = ACTIONS(662), + [anon_sym_PLUS_EQ] = ACTIONS(660), + [anon_sym_DASH_EQ] = ACTIONS(660), + [anon_sym_STAR_EQ] = ACTIONS(660), + [anon_sym_SLASH_EQ] = ACTIONS(660), + [anon_sym_PERCENT_EQ] = ACTIONS(660), + [anon_sym_AMP_EQ] = ACTIONS(660), + [anon_sym_PIPE_EQ] = ACTIONS(660), + [anon_sym_CARET_EQ] = ACTIONS(660), + [anon_sym_LT_LT_EQ] = ACTIONS(660), + [anon_sym_GT_GT_EQ] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(662), + [anon_sym_move] = ACTIONS(662), + [anon_sym_DOT] = ACTIONS(662), + [sym_integer_literal] = ACTIONS(660), + [aux_sym_string_literal_token1] = ACTIONS(660), + [sym_char_literal] = ACTIONS(660), + [anon_sym_true] = ACTIONS(662), + [anon_sym_false] = ACTIONS(662), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(662), + [sym_super] = ACTIONS(662), + [sym_crate] = ACTIONS(662), + [sym_metavariable] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(660), + [sym_float_literal] = ACTIONS(660), + [sym_block_comment] = ACTIONS(3), + }, + [165] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1240), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -35968,12 +37637,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -35991,199 +37660,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [176] = { - [ts_builtin_sym_end] = ACTIONS(668), - [sym_identifier] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(668), - [anon_sym_macro_rules_BANG] = ACTIONS(668), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_RBRACE] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(668), - [anon_sym_u8] = ACTIONS(670), - [anon_sym_i8] = ACTIONS(670), - [anon_sym_u16] = ACTIONS(670), - [anon_sym_i16] = ACTIONS(670), - [anon_sym_u32] = ACTIONS(670), - [anon_sym_i32] = ACTIONS(670), - [anon_sym_u64] = ACTIONS(670), - [anon_sym_i64] = ACTIONS(670), - [anon_sym_u128] = ACTIONS(670), - [anon_sym_i128] = ACTIONS(670), - [anon_sym_isize] = ACTIONS(670), - [anon_sym_usize] = ACTIONS(670), - [anon_sym_f32] = ACTIONS(670), - [anon_sym_f64] = ACTIONS(670), - [anon_sym_bool] = ACTIONS(670), - [anon_sym_str] = ACTIONS(670), - [anon_sym_char] = ACTIONS(670), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_as] = ACTIONS(670), - [anon_sym_async] = 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_while] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_extern] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_COLON_COLON] = ACTIONS(668), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [anon_sym_DOT_DOT] = ACTIONS(670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_AMP_AMP] = ACTIONS(668), - [anon_sym_PIPE_PIPE] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(668), - [anon_sym_BANG_EQ] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(668), - [anon_sym_LT_LT] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(670), - [anon_sym_PLUS_EQ] = ACTIONS(668), - [anon_sym_DASH_EQ] = ACTIONS(668), - [anon_sym_STAR_EQ] = ACTIONS(668), - [anon_sym_SLASH_EQ] = ACTIONS(668), - [anon_sym_PERCENT_EQ] = ACTIONS(668), - [anon_sym_AMP_EQ] = ACTIONS(668), - [anon_sym_PIPE_EQ] = ACTIONS(668), - [anon_sym_CARET_EQ] = ACTIONS(668), - [anon_sym_LT_LT_EQ] = ACTIONS(668), - [anon_sym_GT_GT_EQ] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(670), - [anon_sym_move] = ACTIONS(670), - [anon_sym_DOT] = ACTIONS(670), - [sym_integer_literal] = ACTIONS(668), - [aux_sym_string_literal_token1] = ACTIONS(668), - [sym_char_literal] = ACTIONS(668), - [anon_sym_true] = ACTIONS(670), - [anon_sym_false] = ACTIONS(670), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(670), - [sym_super] = ACTIONS(670), - [sym_crate] = ACTIONS(670), - [sym_metavariable] = ACTIONS(668), - [sym_raw_string_literal] = ACTIONS(668), - [sym_float_literal] = ACTIONS(668), - [sym_block_comment] = ACTIONS(3), - }, - [177] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1307), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [166] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1318), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [167] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), @@ -36203,58 +37872,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [178] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [168] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -36286,12 +37955,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -36309,58 +37978,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [179] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1224), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [169] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1298), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -36392,12 +38061,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -36415,56 +38084,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [180] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(801), + [170] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1322), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(241), - [sym_if_let_expression] = STATE(241), - [sym_match_expression] = STATE(241), - [sym_while_expression] = STATE(241), - [sym_while_let_expression] = STATE(241), - [sym_loop_expression] = STATE(241), - [sym_for_expression] = STATE(241), - [sym_const_block] = STATE(241), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2554), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(241), - [sym_async_block] = STATE(241), - [sym_block] = STATE(241), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -36485,19 +38154,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(604), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(606), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(608), - [anon_sym_if] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(612), - [anon_sym_match] = ACTIONS(614), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(616), - [anon_sym_while] = ACTIONS(618), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -36521,53 +38190,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [181] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(801), + [171] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1332), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36627,270 +38296,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [182] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1167), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [172] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1118), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [183] = { - [ts_builtin_sym_end] = ACTIONS(672), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(672), - [anon_sym_macro_rules_BANG] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(672), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(672), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_extern] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_AMP] = ACTIONS(674), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [anon_sym_DOT_DOT] = ACTIONS(674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_AMP_AMP] = ACTIONS(672), - [anon_sym_PIPE_PIPE] = ACTIONS(672), - [anon_sym_PIPE] = ACTIONS(674), - [anon_sym_CARET] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(672), - [anon_sym_BANG_EQ] = ACTIONS(672), - [anon_sym_LT_EQ] = ACTIONS(672), - [anon_sym_GT_EQ] = ACTIONS(672), - [anon_sym_LT_LT] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(674), - [anon_sym_PERCENT] = ACTIONS(674), - [anon_sym_PLUS_EQ] = ACTIONS(672), - [anon_sym_DASH_EQ] = ACTIONS(672), - [anon_sym_STAR_EQ] = ACTIONS(672), - [anon_sym_SLASH_EQ] = ACTIONS(672), - [anon_sym_PERCENT_EQ] = ACTIONS(672), - [anon_sym_AMP_EQ] = ACTIONS(672), - [anon_sym_PIPE_EQ] = ACTIONS(672), - [anon_sym_CARET_EQ] = ACTIONS(672), - [anon_sym_LT_LT_EQ] = ACTIONS(672), - [anon_sym_GT_GT_EQ] = ACTIONS(672), - [anon_sym_yield] = ACTIONS(674), - [anon_sym_move] = ACTIONS(674), - [anon_sym_DOT] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(672), - [aux_sym_string_literal_token1] = ACTIONS(672), - [sym_char_literal] = ACTIONS(672), - [anon_sym_true] = ACTIONS(674), - [anon_sym_false] = ACTIONS(674), + [173] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1311), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym_metavariable] = ACTIONS(672), - [sym_raw_string_literal] = ACTIONS(672), - [sym_float_literal] = ACTIONS(672), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [184] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1222), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [174] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1310), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -36922,12 +38591,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -36945,58 +38614,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [185] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [175] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1307), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(506), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -37028,12 +38697,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -37051,159 +38720,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [186] = { - [ts_builtin_sym_end] = ACTIONS(676), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_macro_rules_BANG] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(676), - [anon_sym_RBRACE] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(678), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_extern] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT] = ACTIONS(678), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(678), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(678), - [anon_sym_CARET] = ACTIONS(678), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_PERCENT] = ACTIONS(678), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_move] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(676), - [aux_sym_string_literal_token1] = ACTIONS(676), - [sym_char_literal] = ACTIONS(676), - [anon_sym_true] = ACTIONS(678), - [anon_sym_false] = ACTIONS(678), + [176] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1305), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym_metavariable] = ACTIONS(676), - [sym_raw_string_literal] = ACTIONS(676), - [sym_float_literal] = ACTIONS(676), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [187] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1308), - [sym_macro_invocation] = STATE(801), + [177] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1169), + [sym_macro_invocation] = STATE(829), [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -37244,7 +38913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -37263,979 +38932,1218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [188] = { - [sym_identifier] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_macro_rules_BANG] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(564), - [anon_sym_i8] = ACTIONS(564), - [anon_sym_u16] = ACTIONS(564), - [anon_sym_i16] = ACTIONS(564), - [anon_sym_u32] = ACTIONS(564), - [anon_sym_i32] = ACTIONS(564), - [anon_sym_u64] = ACTIONS(564), - [anon_sym_i64] = ACTIONS(564), - [anon_sym_u128] = ACTIONS(564), - [anon_sym_i128] = ACTIONS(564), - [anon_sym_isize] = ACTIONS(564), - [anon_sym_usize] = ACTIONS(564), - [anon_sym_f32] = ACTIONS(564), - [anon_sym_f64] = ACTIONS(564), - [anon_sym_bool] = ACTIONS(564), - [anon_sym_str] = ACTIONS(564), - [anon_sym_char] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_as] = ACTIONS(568), - [anon_sym_async] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_const] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_default] = ACTIONS(564), - [anon_sym_enum] = ACTIONS(564), - [anon_sym_fn] = ACTIONS(564), - [anon_sym_for] = ACTIONS(564), - [anon_sym_if] = ACTIONS(564), - [anon_sym_impl] = ACTIONS(564), - [anon_sym_let] = ACTIONS(564), - [anon_sym_loop] = ACTIONS(564), - [anon_sym_match] = ACTIONS(564), - [anon_sym_mod] = ACTIONS(564), - [anon_sym_pub] = ACTIONS(564), - [anon_sym_return] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_struct] = ACTIONS(564), - [anon_sym_trait] = ACTIONS(564), - [anon_sym_type] = ACTIONS(564), - [anon_sym_union] = ACTIONS(564), - [anon_sym_unsafe] = ACTIONS(564), - [anon_sym_use] = ACTIONS(564), - [anon_sym_while] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_move] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(562), - [aux_sym_string_literal_token1] = ACTIONS(562), - [sym_char_literal] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), + [178] = { + [ts_builtin_sym_end] = ACTIONS(664), + [sym_identifier] = ACTIONS(666), + [anon_sym_SEMI] = ACTIONS(664), + [anon_sym_macro_rules_BANG] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_QMARK] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(666), + [anon_sym_as] = ACTIONS(666), + [anon_sym_async] = ACTIONS(666), + [anon_sym_break] = ACTIONS(666), + [anon_sym_const] = ACTIONS(666), + [anon_sym_continue] = ACTIONS(666), + [anon_sym_default] = ACTIONS(666), + [anon_sym_enum] = ACTIONS(666), + [anon_sym_fn] = ACTIONS(666), + [anon_sym_for] = ACTIONS(666), + [anon_sym_if] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(666), + [anon_sym_let] = ACTIONS(666), + [anon_sym_loop] = ACTIONS(666), + [anon_sym_match] = ACTIONS(666), + [anon_sym_mod] = ACTIONS(666), + [anon_sym_pub] = ACTIONS(666), + [anon_sym_return] = ACTIONS(666), + [anon_sym_static] = ACTIONS(666), + [anon_sym_struct] = ACTIONS(666), + [anon_sym_trait] = ACTIONS(666), + [anon_sym_type] = ACTIONS(666), + [anon_sym_union] = ACTIONS(666), + [anon_sym_unsafe] = ACTIONS(666), + [anon_sym_use] = ACTIONS(666), + [anon_sym_while] = ACTIONS(666), + [anon_sym_POUND] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(666), + [anon_sym_EQ] = ACTIONS(666), + [anon_sym_extern] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(666), + [anon_sym_COLON_COLON] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [anon_sym_DOT_DOT] = ACTIONS(666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(664), + [anon_sym_PIPE_PIPE] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(664), + [anon_sym_BANG_EQ] = ACTIONS(664), + [anon_sym_LT_EQ] = ACTIONS(664), + [anon_sym_GT_EQ] = ACTIONS(664), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_PLUS_EQ] = ACTIONS(664), + [anon_sym_DASH_EQ] = ACTIONS(664), + [anon_sym_STAR_EQ] = ACTIONS(664), + [anon_sym_SLASH_EQ] = ACTIONS(664), + [anon_sym_PERCENT_EQ] = ACTIONS(664), + [anon_sym_AMP_EQ] = ACTIONS(664), + [anon_sym_PIPE_EQ] = ACTIONS(664), + [anon_sym_CARET_EQ] = ACTIONS(664), + [anon_sym_LT_LT_EQ] = ACTIONS(664), + [anon_sym_GT_GT_EQ] = ACTIONS(664), + [anon_sym_yield] = ACTIONS(666), + [anon_sym_move] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(666), + [sym_integer_literal] = ACTIONS(664), + [aux_sym_string_literal_token1] = ACTIONS(664), + [sym_char_literal] = ACTIONS(664), + [anon_sym_true] = ACTIONS(666), + [anon_sym_false] = ACTIONS(666), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(564), - [sym_super] = ACTIONS(564), - [sym_crate] = ACTIONS(564), - [sym_metavariable] = ACTIONS(562), - [sym_raw_string_literal] = ACTIONS(562), - [sym_float_literal] = ACTIONS(562), + [sym_self] = ACTIONS(666), + [sym_super] = ACTIONS(666), + [sym_crate] = ACTIONS(666), + [sym_metavariable] = ACTIONS(664), + [sym_raw_string_literal] = ACTIONS(664), + [sym_float_literal] = ACTIONS(664), [sym_block_comment] = ACTIONS(3), }, - [189] = { - [sym_attribute_item] = STATE(202), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2087), - [sym_variadic_parameter] = STATE(2087), - [sym_parameter] = STATE(2087), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1805), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [179] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(720), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [190] = { - [sym_attribute_item] = STATE(203), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(1962), - [sym_variadic_parameter] = STATE(1962), - [sym_parameter] = STATE(1962), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1833), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1755), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(758), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [180] = { + [ts_builtin_sym_end] = ACTIONS(668), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(668), + [anon_sym_macro_rules_BANG] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(670), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = 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_while] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(668), + [anon_sym_BANG] = ACTIONS(670), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_extern] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_COLON_COLON] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(668), + [anon_sym_DOT_DOT] = ACTIONS(670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(670), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(670), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(670), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_yield] = ACTIONS(670), + [anon_sym_move] = ACTIONS(670), + [anon_sym_DOT] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(668), + [aux_sym_string_literal_token1] = ACTIONS(668), + [sym_char_literal] = ACTIONS(668), + [anon_sym_true] = ACTIONS(670), + [anon_sym_false] = ACTIONS(670), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(668), + [sym_raw_string_literal] = ACTIONS(668), + [sym_float_literal] = ACTIONS(668), [sym_block_comment] = ACTIONS(3), }, - [191] = { - [sym_attribute_item] = STATE(203), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(1962), - [sym_variadic_parameter] = STATE(1962), - [sym_parameter] = STATE(1962), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1833), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1755), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(774), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [181] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [192] = { - [sym_attribute_item] = STATE(203), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(1962), - [sym_variadic_parameter] = STATE(1962), - [sym_parameter] = STATE(1962), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1833), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(776), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(778), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [182] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1274), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [193] = { - [sym_attribute_item] = STATE(203), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(1962), - [sym_variadic_parameter] = STATE(1962), - [sym_parameter] = STATE(1962), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1833), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1755), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(784), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [183] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1118), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [194] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2232), - [sym_variadic_parameter] = STATE(2232), - [sym_parameter] = STATE(2232), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [184] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(1956), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1348), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [195] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2232), - [sym_variadic_parameter] = STATE(2232), - [sym_parameter] = STATE(2232), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [185] = { + [sym_bracketed_type] = STATE(2535), + [sym_generic_function] = STATE(829), + [sym_generic_type_with_turbofish] = STATE(2014), + [sym__expression_except_range] = STATE(829), + [sym__expression] = STATE(1321), + [sym_macro_invocation] = STATE(829), + [sym_scoped_identifier] = STATE(1217), + [sym_scoped_type_identifier_in_expression_position] = STATE(2275), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(829), + [sym_try_expression] = STATE(829), + [sym_reference_expression] = STATE(829), + [sym_binary_expression] = STATE(829), + [sym_assignment_expression] = STATE(829), + [sym_compound_assignment_expr] = STATE(829), + [sym_type_cast_expression] = STATE(829), + [sym_return_expression] = STATE(829), + [sym_yield_expression] = STATE(829), + [sym_call_expression] = STATE(829), + [sym_array_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(829), + [sym_tuple_expression] = STATE(829), + [sym_unit_expression] = STATE(829), + [sym_struct_expression] = STATE(829), + [sym_if_expression] = STATE(829), + [sym_if_let_expression] = STATE(829), + [sym_match_expression] = STATE(829), + [sym_while_expression] = STATE(829), + [sym_while_let_expression] = STATE(829), + [sym_loop_expression] = STATE(829), + [sym_for_expression] = STATE(829), + [sym_const_block] = STATE(829), + [sym_closure_expression] = STATE(829), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2570), + [sym_break_expression] = STATE(829), + [sym_continue_expression] = STATE(829), + [sym_index_expression] = STATE(829), + [sym_await_expression] = STATE(829), + [sym_field_expression] = STATE(826), + [sym_unsafe_block] = STATE(829), + [sym_async_block] = STATE(829), + [sym_block] = STATE(829), + [sym__literal] = STATE(829), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [196] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2232), - [sym_variadic_parameter] = STATE(2232), - [sym_parameter] = STATE(2232), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [186] = { + [ts_builtin_sym_end] = ACTIONS(672), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_macro_rules_BANG] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_PLUS] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(674), + [anon_sym_i8] = ACTIONS(674), + [anon_sym_u16] = ACTIONS(674), + [anon_sym_i16] = ACTIONS(674), + [anon_sym_u32] = ACTIONS(674), + [anon_sym_i32] = ACTIONS(674), + [anon_sym_u64] = ACTIONS(674), + [anon_sym_i64] = ACTIONS(674), + [anon_sym_u128] = ACTIONS(674), + [anon_sym_i128] = ACTIONS(674), + [anon_sym_isize] = ACTIONS(674), + [anon_sym_usize] = ACTIONS(674), + [anon_sym_f32] = ACTIONS(674), + [anon_sym_f64] = ACTIONS(674), + [anon_sym_bool] = ACTIONS(674), + [anon_sym_str] = ACTIONS(674), + [anon_sym_char] = ACTIONS(674), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_as] = ACTIONS(674), + [anon_sym_async] = ACTIONS(674), + [anon_sym_break] = ACTIONS(674), + [anon_sym_const] = ACTIONS(674), + [anon_sym_continue] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_enum] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(674), + [anon_sym_for] = ACTIONS(674), + [anon_sym_if] = ACTIONS(674), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_let] = ACTIONS(674), + [anon_sym_loop] = ACTIONS(674), + [anon_sym_match] = ACTIONS(674), + [anon_sym_mod] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(674), + [anon_sym_return] = ACTIONS(674), + [anon_sym_static] = ACTIONS(674), + [anon_sym_struct] = ACTIONS(674), + [anon_sym_trait] = ACTIONS(674), + [anon_sym_type] = ACTIONS(674), + [anon_sym_union] = ACTIONS(674), + [anon_sym_unsafe] = ACTIONS(674), + [anon_sym_use] = ACTIONS(674), + [anon_sym_while] = ACTIONS(674), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_EQ] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT] = ACTIONS(674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_CARET] = ACTIONS(674), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(674), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(674), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_yield] = ACTIONS(674), + [anon_sym_move] = ACTIONS(674), + [anon_sym_DOT] = ACTIONS(674), + [sym_integer_literal] = ACTIONS(672), + [aux_sym_string_literal_token1] = ACTIONS(672), + [sym_char_literal] = ACTIONS(672), + [anon_sym_true] = ACTIONS(674), + [anon_sym_false] = ACTIONS(674), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(672), + [sym_raw_string_literal] = ACTIONS(672), + [sym_float_literal] = ACTIONS(672), [sym_block_comment] = ACTIONS(3), }, - [197] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2232), - [sym_variadic_parameter] = STATE(2232), - [sym_parameter] = STATE(2232), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [187] = { + [ts_builtin_sym_end] = ACTIONS(676), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_macro_rules_BANG] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_EQ] = ACTIONS(678), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym_AMP] = ACTIONS(678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [anon_sym_DOT_DOT] = ACTIONS(678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(678), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_PERCENT] = ACTIONS(678), + [anon_sym_PLUS_EQ] = ACTIONS(676), + [anon_sym_DASH_EQ] = ACTIONS(676), + [anon_sym_STAR_EQ] = ACTIONS(676), + [anon_sym_SLASH_EQ] = ACTIONS(676), + [anon_sym_PERCENT_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_CARET_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_move] = ACTIONS(678), + [anon_sym_DOT] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(676), + [aux_sym_string_literal_token1] = ACTIONS(676), + [sym_char_literal] = ACTIONS(676), + [anon_sym_true] = ACTIONS(678), + [anon_sym_false] = ACTIONS(678), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym_metavariable] = ACTIONS(676), + [sym_raw_string_literal] = ACTIONS(676), + [sym_float_literal] = ACTIONS(676), + [sym_block_comment] = ACTIONS(3), + }, + [188] = { + [sym_identifier] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(568), + [anon_sym_macro_rules_BANG] = ACTIONS(624), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_QMARK] = ACTIONS(568), + [anon_sym_u8] = ACTIONS(626), + [anon_sym_i8] = ACTIONS(626), + [anon_sym_u16] = ACTIONS(626), + [anon_sym_i16] = ACTIONS(626), + [anon_sym_u32] = ACTIONS(626), + [anon_sym_i32] = ACTIONS(626), + [anon_sym_u64] = ACTIONS(626), + [anon_sym_i64] = ACTIONS(626), + [anon_sym_u128] = ACTIONS(626), + [anon_sym_i128] = ACTIONS(626), + [anon_sym_isize] = ACTIONS(626), + [anon_sym_usize] = ACTIONS(626), + [anon_sym_f32] = ACTIONS(626), + [anon_sym_f64] = ACTIONS(626), + [anon_sym_bool] = ACTIONS(626), + [anon_sym_str] = ACTIONS(626), + [anon_sym_char] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(626), + [anon_sym_as] = ACTIONS(566), + [anon_sym_async] = ACTIONS(626), + [anon_sym_break] = ACTIONS(626), + [anon_sym_const] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_enum] = ACTIONS(626), + [anon_sym_fn] = ACTIONS(626), + [anon_sym_for] = ACTIONS(626), + [anon_sym_if] = ACTIONS(626), + [anon_sym_impl] = ACTIONS(626), + [anon_sym_let] = ACTIONS(626), + [anon_sym_loop] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_mod] = ACTIONS(626), + [anon_sym_pub] = ACTIONS(626), + [anon_sym_return] = ACTIONS(626), + [anon_sym_static] = ACTIONS(626), + [anon_sym_struct] = ACTIONS(626), + [anon_sym_trait] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_union] = ACTIONS(626), + [anon_sym_unsafe] = ACTIONS(626), + [anon_sym_use] = ACTIONS(626), + [anon_sym_while] = ACTIONS(626), + [anon_sym_POUND] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(566), + [anon_sym_extern] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(566), + [anon_sym_COLON_COLON] = ACTIONS(624), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT_EQ] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_move] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(566), + [sym_integer_literal] = ACTIONS(624), + [aux_sym_string_literal_token1] = ACTIONS(624), + [sym_char_literal] = ACTIONS(624), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_crate] = ACTIONS(626), + [sym_metavariable] = ACTIONS(624), + [sym_raw_string_literal] = ACTIONS(624), + [sym_float_literal] = ACTIONS(624), + [sym_block_comment] = ACTIONS(3), + }, + [189] = { + [sym_attribute_item] = STATE(202), + [sym_function_modifiers] = STATE(2463), + [sym_self_parameter] = STATE(2119), + [sym_variadic_parameter] = STATE(2119), + [sym_parameter] = STATE(2119), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1858), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(1966), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2316), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_RPAREN] = ACTIONS(684), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -38266,11 +40174,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(712), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(788), + [anon_sym__] = ACTIONS(720), [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -38291,89 +40200,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [198] = { + [190] = { [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2232), - [sym_variadic_parameter] = STATE(2232), - [sym_parameter] = STATE(2232), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(796), + [sym_function_modifiers] = STATE(2463), + [sym_self_parameter] = STATE(1965), + [sym_variadic_parameter] = STATE(1965), + [sym_parameter] = STATE(1965), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1872), + [sym_bracketed_type] = STATE(2561), + [sym_lifetime] = STATE(1966), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2562), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1764), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(750), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), + [anon_sym_default] = ACTIONS(754), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), + [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(758), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -38385,61 +40295,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [199] = { + [191] = { [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2232), - [sym_variadic_parameter] = STATE(2232), - [sym_parameter] = STATE(2232), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_function_modifiers] = STATE(2463), + [sym_self_parameter] = STATE(1965), + [sym_variadic_parameter] = STATE(1965), + [sym_parameter] = STATE(1965), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1872), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(1966), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2316), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_RPAREN] = ACTIONS(772), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -38470,11 +40380,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(774), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(788), + [anon_sym__] = ACTIONS(776), [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -38495,88 +40406,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [200] = { + [192] = { [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2232), - [sym_variadic_parameter] = STATE(2232), - [sym_parameter] = STATE(2232), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [sym_function_modifiers] = STATE(2463), + [sym_self_parameter] = STATE(1965), + [sym_variadic_parameter] = STATE(1965), + [sym_parameter] = STATE(1965), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1872), + [sym_bracketed_type] = STATE(2561), + [sym_lifetime] = STATE(1966), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2562), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1764), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), + [anon_sym_default] = ACTIONS(754), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), + [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(780), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -38588,59 +40501,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [201] = { - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2184), - [sym_variadic_parameter] = STATE(2184), - [sym_parameter] = STATE(2184), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [193] = { + [sym_attribute_item] = STATE(201), + [sym_function_modifiers] = STATE(2463), + [sym_self_parameter] = STATE(1965), + [sym_variadic_parameter] = STATE(1965), + [sym_parameter] = STATE(1965), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1872), + [sym_bracketed_type] = STATE(2561), + [sym_lifetime] = STATE(1966), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2562), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1764), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(782), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(754), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(756), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [194] = { + [sym_attribute_item] = STATE(203), + [sym_function_modifiers] = STATE(2463), + [sym_self_parameter] = STATE(2357), + [sym_variadic_parameter] = STATE(2357), + [sym_parameter] = STATE(2357), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2037), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(1966), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2316), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -38669,12 +40687,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(706), [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(800), + [anon_sym__] = ACTIONS(788), [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -38695,51 +40714,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [202] = { - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2150), - [sym_variadic_parameter] = STATE(2150), - [sym_parameter] = STATE(2150), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1889), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [195] = { + [sym_attribute_item] = STATE(203), + [sym_function_modifiers] = STATE(2463), + [sym_self_parameter] = STATE(2357), + [sym_variadic_parameter] = STATE(2357), + [sym_parameter] = STATE(2357), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2037), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(1966), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2316), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(790), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -38768,12 +40789,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(706), [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(802), + [anon_sym__] = ACTIONS(788), [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -38794,49 +40816,558 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [203] = { - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2149), - [sym_variadic_parameter] = STATE(2149), - [sym_parameter] = STATE(2149), - [sym_extern_modifier] = STATE(1564), + [196] = { + [sym_attribute_item] = STATE(203), + [sym_function_modifiers] = STATE(2463), + [sym_self_parameter] = STATE(2357), + [sym_variadic_parameter] = STATE(2357), + [sym_parameter] = STATE(2357), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2037), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(1966), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2316), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(706), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [197] = { + [sym_attribute_item] = STATE(203), + [sym_function_modifiers] = STATE(2463), + [sym_self_parameter] = STATE(2357), + [sym_variadic_parameter] = STATE(2357), + [sym_parameter] = STATE(2357), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2037), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(1966), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2316), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(706), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [198] = { + [sym_attribute_item] = STATE(203), + [sym_function_modifiers] = STATE(2463), + [sym_self_parameter] = STATE(2357), + [sym_variadic_parameter] = STATE(2357), + [sym_parameter] = STATE(2357), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2037), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(1966), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2316), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(706), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [199] = { + [sym_attribute_item] = STATE(203), + [sym_function_modifiers] = STATE(2463), + [sym_self_parameter] = STATE(2357), + [sym_variadic_parameter] = STATE(2357), + [sym_parameter] = STATE(2357), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2037), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(1966), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2316), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(706), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [200] = { + [sym_attribute_item] = STATE(203), + [sym_function_modifiers] = STATE(2463), + [sym_self_parameter] = STATE(2357), + [sym_variadic_parameter] = STATE(2357), + [sym_parameter] = STATE(2357), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2037), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(1966), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2316), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(706), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [201] = { + [sym_function_modifiers] = STATE(2463), + [sym_self_parameter] = STATE(2173), + [sym_variadic_parameter] = STATE(2173), + [sym_parameter] = STATE(2173), + [sym_extern_modifier] = STATE(1584), [sym__type] = STATE(1886), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(1966), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2316), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -38872,7 +41403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(804), + [anon_sym__] = ACTIONS(800), [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -38893,88 +41424,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [204] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1894), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1827), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(806), + [202] = { + [sym_function_modifiers] = STATE(2463), + [sym_self_parameter] = STATE(2156), + [sym_variadic_parameter] = STATE(2156), + [sym_parameter] = STATE(2156), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1899), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(1966), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2316), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), + [anon_sym_default] = ACTIONS(698), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), + [anon_sym_union] = ACTIONS(706), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(812), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(802), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -38982,96 +41515,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [205] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2156), - [sym_bracketed_type] = STATE(2516), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2517), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1741), - [sym_scoped_identifier] = STATE(1585), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1814), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(824), + [203] = { + [sym_function_modifiers] = STATE(2463), + [sym_self_parameter] = STATE(2268), + [sym_variadic_parameter] = STATE(2268), + [sym_parameter] = STATE(2268), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1949), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(1966), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2316), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(826), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(828), - [anon_sym_i8] = ACTIONS(828), - [anon_sym_u16] = ACTIONS(828), - [anon_sym_i16] = ACTIONS(828), - [anon_sym_u32] = ACTIONS(828), - [anon_sym_i32] = ACTIONS(828), - [anon_sym_u64] = ACTIONS(828), - [anon_sym_i64] = ACTIONS(828), - [anon_sym_u128] = ACTIONS(828), - [anon_sym_i128] = ACTIONS(828), - [anon_sym_isize] = ACTIONS(828), - [anon_sym_usize] = ACTIONS(828), - [anon_sym_f32] = ACTIONS(828), - [anon_sym_f64] = ACTIONS(828), - [anon_sym_bool] = ACTIONS(828), - [anon_sym_str] = ACTIONS(828), - [anon_sym_char] = ACTIONS(828), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(830), + [anon_sym_default] = ACTIONS(698), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(832), + [anon_sym_union] = ACTIONS(706), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(834), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(836), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(838), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -39079,57 +41614,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(840), - [sym_super] = ACTIONS(840), - [sym_crate] = ACTIONS(840), - [sym_metavariable] = ACTIONS(842), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [206] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1894), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1827), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [204] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1909), + [sym_bracketed_type] = STATE(2561), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2562), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1851), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(806), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -39184,49 +41719,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [207] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1894), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1827), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [205] = { + [sym_identifier] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_LPAREN] = ACTIONS(824), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_EQ_GT] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_RBRACK] = ACTIONS(824), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(822), + [anon_sym_QMARK] = ACTIONS(824), + [anon_sym_u8] = ACTIONS(822), + [anon_sym_i8] = ACTIONS(822), + [anon_sym_u16] = ACTIONS(822), + [anon_sym_i16] = ACTIONS(822), + [anon_sym_u32] = ACTIONS(822), + [anon_sym_i32] = ACTIONS(822), + [anon_sym_u64] = ACTIONS(822), + [anon_sym_i64] = ACTIONS(822), + [anon_sym_u128] = ACTIONS(822), + [anon_sym_i128] = ACTIONS(822), + [anon_sym_isize] = ACTIONS(822), + [anon_sym_usize] = ACTIONS(822), + [anon_sym_f32] = ACTIONS(822), + [anon_sym_f64] = ACTIONS(822), + [anon_sym_bool] = ACTIONS(822), + [anon_sym_str] = ACTIONS(822), + [anon_sym_char] = ACTIONS(822), + [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_as] = ACTIONS(822), + [anon_sym_async] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_default] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_union] = ACTIONS(822), + [anon_sym_unsafe] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(822), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_else] = ACTIONS(822), + [anon_sym_COLON_COLON] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(824), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [anon_sym_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(824), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(822), + [anon_sym_GT_GT] = ACTIONS(822), + [anon_sym_SLASH] = ACTIONS(822), + [anon_sym_PERCENT] = ACTIONS(822), + [anon_sym_PLUS_EQ] = ACTIONS(824), + [anon_sym_DASH_EQ] = ACTIONS(824), + [anon_sym_STAR_EQ] = ACTIONS(824), + [anon_sym_SLASH_EQ] = ACTIONS(824), + [anon_sym_PERCENT_EQ] = ACTIONS(824), + [anon_sym_AMP_EQ] = ACTIONS(824), + [anon_sym_PIPE_EQ] = ACTIONS(824), + [anon_sym_CARET_EQ] = ACTIONS(824), + [anon_sym_LT_LT_EQ] = ACTIONS(824), + [anon_sym_GT_GT_EQ] = ACTIONS(824), + [anon_sym_yield] = ACTIONS(822), + [anon_sym_move] = ACTIONS(822), + [anon_sym_DOT] = ACTIONS(822), + [sym_integer_literal] = ACTIONS(824), + [aux_sym_string_literal_token1] = ACTIONS(824), + [sym_char_literal] = ACTIONS(824), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(822), + [sym_super] = ACTIONS(822), + [sym_crate] = ACTIONS(822), + [sym_metavariable] = ACTIONS(824), + [sym_raw_string_literal] = ACTIONS(824), + [sym_float_literal] = ACTIONS(824), + [sym_block_comment] = ACTIONS(3), + }, + [206] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1909), + [sym_bracketed_type] = STATE(2561), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2562), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1851), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(826), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -39281,144 +41913,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [208] = { - [sym_identifier] = ACTIONS(848), - [anon_sym_SEMI] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_RPAREN] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_RBRACE] = ACTIONS(850), - [anon_sym_EQ_GT] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_RBRACK] = ACTIONS(850), - [anon_sym_COLON] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(848), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(850), - [anon_sym_u8] = ACTIONS(848), - [anon_sym_i8] = ACTIONS(848), - [anon_sym_u16] = ACTIONS(848), - [anon_sym_i16] = ACTIONS(848), - [anon_sym_u32] = ACTIONS(848), - [anon_sym_i32] = ACTIONS(848), - [anon_sym_u64] = ACTIONS(848), - [anon_sym_i64] = ACTIONS(848), - [anon_sym_u128] = ACTIONS(848), - [anon_sym_i128] = ACTIONS(848), - [anon_sym_isize] = ACTIONS(848), - [anon_sym_usize] = ACTIONS(848), - [anon_sym_f32] = ACTIONS(848), - [anon_sym_f64] = ACTIONS(848), - [anon_sym_bool] = ACTIONS(848), - [anon_sym_str] = ACTIONS(848), - [anon_sym_char] = ACTIONS(848), - [anon_sym_SQUOTE] = ACTIONS(848), - [anon_sym_as] = ACTIONS(848), - [anon_sym_async] = ACTIONS(848), - [anon_sym_break] = ACTIONS(848), - [anon_sym_const] = ACTIONS(848), - [anon_sym_continue] = ACTIONS(848), - [anon_sym_default] = ACTIONS(848), - [anon_sym_for] = ACTIONS(848), - [anon_sym_if] = ACTIONS(848), - [anon_sym_loop] = ACTIONS(848), - [anon_sym_match] = ACTIONS(848), - [anon_sym_return] = ACTIONS(848), - [anon_sym_union] = ACTIONS(848), - [anon_sym_unsafe] = ACTIONS(848), - [anon_sym_while] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(848), - [anon_sym_EQ] = ACTIONS(848), - [anon_sym_COMMA] = ACTIONS(850), - [anon_sym_LT] = ACTIONS(848), - [anon_sym_GT] = ACTIONS(848), - [anon_sym_COLON_COLON] = ACTIONS(850), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_DOT_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(848), - [anon_sym_DOT_DOT_EQ] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(848), - [anon_sym_AMP_AMP] = ACTIONS(850), - [anon_sym_PIPE_PIPE] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(848), - [anon_sym_CARET] = ACTIONS(848), - [anon_sym_EQ_EQ] = ACTIONS(850), - [anon_sym_BANG_EQ] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(848), - [anon_sym_GT_GT] = ACTIONS(848), - [anon_sym_SLASH] = ACTIONS(848), - [anon_sym_PERCENT] = ACTIONS(848), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), - [anon_sym_yield] = ACTIONS(848), - [anon_sym_move] = ACTIONS(848), - [anon_sym_DOT] = ACTIONS(848), - [sym_integer_literal] = ACTIONS(850), - [aux_sym_string_literal_token1] = ACTIONS(850), - [sym_char_literal] = ACTIONS(850), - [anon_sym_true] = ACTIONS(848), - [anon_sym_false] = ACTIONS(848), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(848), - [sym_super] = ACTIONS(848), - [sym_crate] = ACTIONS(848), - [sym_metavariable] = ACTIONS(850), - [sym_raw_string_literal] = ACTIONS(850), - [sym_float_literal] = ACTIONS(850), + [207] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2130), + [sym_bracketed_type] = STATE(2564), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2565), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1762), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1914), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(830), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(834), + [anon_sym_i8] = ACTIONS(834), + [anon_sym_u16] = ACTIONS(834), + [anon_sym_i16] = ACTIONS(834), + [anon_sym_u32] = ACTIONS(834), + [anon_sym_i32] = ACTIONS(834), + [anon_sym_u64] = ACTIONS(834), + [anon_sym_i64] = ACTIONS(834), + [anon_sym_u128] = ACTIONS(834), + [anon_sym_i128] = ACTIONS(834), + [anon_sym_isize] = ACTIONS(834), + [anon_sym_usize] = ACTIONS(834), + [anon_sym_f32] = ACTIONS(834), + [anon_sym_f64] = ACTIONS(834), + [anon_sym_bool] = ACTIONS(834), + [anon_sym_str] = ACTIONS(834), + [anon_sym_char] = ACTIONS(834), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(836), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(838), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(842), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(844), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(846), + [sym_super] = ACTIONS(846), + [sym_crate] = ACTIONS(846), + [sym_metavariable] = ACTIONS(848), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [209] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1429), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(644), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [208] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1909), + [sym_bracketed_type] = STATE(2561), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2562), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1851), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(850), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -39438,7 +42072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(808), @@ -39448,6 +42082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(812), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), @@ -39455,7 +42090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(814), [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(854), + [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -39472,46 +42107,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [210] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1429), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(644), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), + [209] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(652), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), [sym__pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -39536,11 +42171,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(856), + [anon_sym_default] = ACTIONS(854), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), + [anon_sym_union] = ACTIONS(856), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), @@ -39548,9 +42183,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(858), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(862), + [sym_mutable_specifier] = ACTIONS(860), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -39567,85 +42202,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [211] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1429), - [sym_bracketed_type] = STATE(2516), - [sym_lifetime] = STATE(644), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2517), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1741), - [sym_scoped_identifier] = STATE(1585), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), + [210] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(2564), + [sym_lifetime] = STATE(652), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2565), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1762), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), [sym__pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(824), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(830), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(828), - [anon_sym_i8] = ACTIONS(828), - [anon_sym_u16] = ACTIONS(828), - [anon_sym_i16] = ACTIONS(828), - [anon_sym_u32] = ACTIONS(828), - [anon_sym_i32] = ACTIONS(828), - [anon_sym_u64] = ACTIONS(828), - [anon_sym_i64] = ACTIONS(828), - [anon_sym_u128] = ACTIONS(828), - [anon_sym_i128] = ACTIONS(828), - [anon_sym_isize] = ACTIONS(828), - [anon_sym_usize] = ACTIONS(828), - [anon_sym_f32] = ACTIONS(828), - [anon_sym_f64] = ACTIONS(828), - [anon_sym_bool] = ACTIONS(828), - [anon_sym_str] = ACTIONS(828), - [anon_sym_char] = ACTIONS(828), + [anon_sym_u8] = ACTIONS(834), + [anon_sym_i8] = ACTIONS(834), + [anon_sym_u16] = ACTIONS(834), + [anon_sym_i16] = ACTIONS(834), + [anon_sym_u32] = ACTIONS(834), + [anon_sym_i32] = ACTIONS(834), + [anon_sym_u64] = ACTIONS(834), + [anon_sym_i64] = ACTIONS(834), + [anon_sym_u128] = ACTIONS(834), + [anon_sym_i128] = ACTIONS(834), + [anon_sym_isize] = ACTIONS(834), + [anon_sym_usize] = ACTIONS(834), + [anon_sym_f32] = ACTIONS(834), + [anon_sym_f64] = ACTIONS(834), + [anon_sym_bool] = ACTIONS(834), + [anon_sym_str] = ACTIONS(834), + [anon_sym_char] = ACTIONS(834), [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(830), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(832), + [anon_sym_union] = ACTIONS(838), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(836), + [anon_sym_COLON_COLON] = ACTIONS(842), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(844), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(864), + [sym_mutable_specifier] = ACTIONS(862), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -39654,54 +42289,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(840), - [sym_super] = ACTIONS(840), - [sym_crate] = ACTIONS(840), - [sym_metavariable] = ACTIONS(842), + [sym_self] = ACTIONS(846), + [sym_super] = ACTIONS(846), + [sym_crate] = ACTIONS(846), + [sym_metavariable] = ACTIONS(848), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [212] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1433), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1502), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [211] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(648), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1495), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -39723,14 +42358,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(690), [anon_sym_str] = ACTIONS(690), [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(856), + [anon_sym_default] = ACTIONS(854), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), + [anon_sym_union] = ACTIONS(856), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), @@ -39738,9 +42373,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(858), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), + [sym_mutable_specifier] = ACTIONS(864), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -39757,46 +42392,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [213] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1433), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1502), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [212] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1440), + [sym_bracketed_type] = STATE(2561), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2562), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1472), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -39852,46 +42487,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [214] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1429), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(641), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [213] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1440), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1472), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -39913,14 +42548,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(690), [anon_sym_str] = ACTIONS(690), [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(856), + [anon_sym_default] = ACTIONS(854), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), + [anon_sym_union] = ACTIONS(856), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), @@ -39928,9 +42563,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(858), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(868), + [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -39939,7 +42574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(870), + [sym_self] = ACTIONS(742), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), [sym_metavariable] = ACTIONS(744), @@ -39947,46 +42582,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [215] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1429), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(641), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), + [214] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(2561), + [sym_lifetime] = STATE(648), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2562), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), [sym__pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -40025,7 +42660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(814), [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(872), + [sym_mutable_specifier] = ACTIONS(868), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -40034,7 +42669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), + [sym_self] = ACTIONS(870), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), @@ -40042,83 +42677,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [216] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1433), - [sym_bracketed_type] = STATE(2516), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2517), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1741), - [sym_scoped_identifier] = STATE(1585), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1502), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(824), + [215] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1440), + [sym_bracketed_type] = STATE(2564), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2565), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1762), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1472), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(830), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(828), - [anon_sym_i8] = ACTIONS(828), - [anon_sym_u16] = ACTIONS(828), - [anon_sym_i16] = ACTIONS(828), - [anon_sym_u32] = ACTIONS(828), - [anon_sym_i32] = ACTIONS(828), - [anon_sym_u64] = ACTIONS(828), - [anon_sym_i64] = ACTIONS(828), - [anon_sym_u128] = ACTIONS(828), - [anon_sym_i128] = ACTIONS(828), - [anon_sym_isize] = ACTIONS(828), - [anon_sym_usize] = ACTIONS(828), - [anon_sym_f32] = ACTIONS(828), - [anon_sym_f64] = ACTIONS(828), - [anon_sym_bool] = ACTIONS(828), - [anon_sym_str] = ACTIONS(828), - [anon_sym_char] = ACTIONS(828), + [anon_sym_u8] = ACTIONS(834), + [anon_sym_i8] = ACTIONS(834), + [anon_sym_u16] = ACTIONS(834), + [anon_sym_i16] = ACTIONS(834), + [anon_sym_u32] = ACTIONS(834), + [anon_sym_i32] = ACTIONS(834), + [anon_sym_u64] = ACTIONS(834), + [anon_sym_i64] = ACTIONS(834), + [anon_sym_u128] = ACTIONS(834), + [anon_sym_i128] = ACTIONS(834), + [anon_sym_isize] = ACTIONS(834), + [anon_sym_usize] = ACTIONS(834), + [anon_sym_f32] = ACTIONS(834), + [anon_sym_f64] = ACTIONS(834), + [anon_sym_bool] = ACTIONS(834), + [anon_sym_str] = ACTIONS(834), + [anon_sym_char] = ACTIONS(834), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(830), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(832), + [anon_sym_union] = ACTIONS(838), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(836), + [anon_sym_COLON_COLON] = ACTIONS(842), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(844), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), @@ -40129,93 +42764,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(840), - [sym_super] = ACTIONS(840), - [sym_crate] = ACTIONS(840), - [sym_metavariable] = ACTIONS(842), + [sym_self] = ACTIONS(846), + [sym_super] = ACTIONS(846), + [sym_crate] = ACTIONS(846), + [sym_metavariable] = ACTIONS(848), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [217] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1433), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1502), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [216] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(2561), + [sym_lifetime] = STATE(652), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2562), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1495), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(856), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), + [sym_mutable_specifier] = ACTIONS(872), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -40224,54 +42859,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(768), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [218] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1433), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1502), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [217] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1440), + [sym_bracketed_type] = STATE(2561), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2562), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1472), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -40319,7 +42954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), + [sym_self] = ACTIONS(874), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), @@ -40327,30 +42962,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, + [218] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1440), + [sym_bracketed_type] = STATE(2557), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2558), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1786), + [sym_scoped_identifier] = STATE(1625), + [sym_scoped_type_identifier] = STATE(1523), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1472), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(854), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(856), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(858), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, [219] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1480), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1484), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), [sym_identifier] = ACTIONS(878), [anon_sym_LPAREN] = ACTIONS(880), [anon_sym_LBRACE] = ACTIONS(880), @@ -40415,1074 +43145,1074 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [220] = { - [sym_else_clause] = STATE(247), - [sym_identifier] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_isize] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_f32] = ACTIONS(394), - [anon_sym_f64] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_str] = ACTIONS(394), - [anon_sym_char] = ACTIONS(394), - [anon_sym_as] = ACTIONS(394), - [anon_sym_const] = ACTIONS(394), - [anon_sym_default] = ACTIONS(394), - [anon_sym_union] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_ref] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(392), - [anon_sym__] = ACTIONS(394), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [sym_mutable_specifier] = ACTIONS(394), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_else] = ACTIONS(882), - [anon_sym_DOT] = ACTIONS(394), - [sym_integer_literal] = ACTIONS(392), - [aux_sym_string_literal_token1] = ACTIONS(392), - [sym_char_literal] = ACTIONS(392), - [anon_sym_true] = ACTIONS(394), - [anon_sym_false] = ACTIONS(394), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(394), - [sym_super] = ACTIONS(394), - [sym_crate] = ACTIONS(394), - [sym_metavariable] = ACTIONS(392), - [sym_raw_string_literal] = ACTIONS(392), - [sym_float_literal] = ACTIONS(392), + [sym__attr] = STATE(2624), + [sym_custom_attr] = STATE(2624), + [sym_built_in_attr] = STATE(2624), + [sym__built_in_attr_path] = STATE(1868), + [sym_bracketed_type] = STATE(2535), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_scoped_identifier] = STATE(1656), + [sym_identifier] = ACTIONS(882), + [anon_sym_path] = ACTIONS(884), + [anon_sym_u8] = ACTIONS(886), + [anon_sym_i8] = ACTIONS(886), + [anon_sym_u16] = ACTIONS(886), + [anon_sym_i16] = ACTIONS(886), + [anon_sym_u32] = ACTIONS(886), + [anon_sym_i32] = ACTIONS(886), + [anon_sym_u64] = ACTIONS(886), + [anon_sym_i64] = ACTIONS(886), + [anon_sym_u128] = ACTIONS(886), + [anon_sym_i128] = ACTIONS(886), + [anon_sym_isize] = ACTIONS(886), + [anon_sym_usize] = ACTIONS(886), + [anon_sym_f32] = ACTIONS(886), + [anon_sym_f64] = ACTIONS(886), + [anon_sym_bool] = ACTIONS(886), + [anon_sym_str] = ACTIONS(886), + [anon_sym_char] = ACTIONS(886), + [anon_sym_default] = ACTIONS(886), + [anon_sym_union] = ACTIONS(886), + [anon_sym_cfg] = ACTIONS(884), + [anon_sym_cfg_attr] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_ignore] = ACTIONS(884), + [anon_sym_should_panic] = ACTIONS(884), + [anon_sym_derive] = ACTIONS(884), + [anon_sym_automatically_derived] = ACTIONS(884), + [anon_sym_macro_export] = ACTIONS(884), + [anon_sym_macro_use] = ACTIONS(884), + [anon_sym_proc_macro] = ACTIONS(884), + [anon_sym_proc_macro_derive] = ACTIONS(884), + [anon_sym_proc_macro_attribute] = ACTIONS(884), + [anon_sym_allow] = ACTIONS(884), + [anon_sym_warn] = ACTIONS(884), + [anon_sym_deny] = ACTIONS(884), + [anon_sym_forbid] = ACTIONS(884), + [anon_sym_deprecated] = ACTIONS(884), + [anon_sym_must_use] = ACTIONS(884), + [anon_sym_link] = ACTIONS(884), + [anon_sym_link_name] = ACTIONS(884), + [anon_sym_no_link] = ACTIONS(884), + [anon_sym_repr] = ACTIONS(884), + [anon_sym_crate_type] = ACTIONS(884), + [anon_sym_no_main] = ACTIONS(884), + [anon_sym_export_name] = ACTIONS(884), + [anon_sym_link_section] = ACTIONS(884), + [anon_sym_no_mangle] = ACTIONS(884), + [anon_sym_used] = ACTIONS(884), + [anon_sym_crate_name] = ACTIONS(884), + [anon_sym_inline] = ACTIONS(884), + [anon_sym_cold] = ACTIONS(884), + [anon_sym_no_builtins] = ACTIONS(884), + [anon_sym_target_feature] = ACTIONS(884), + [anon_sym_track_caller] = ACTIONS(884), + [anon_sym_doc] = ACTIONS(884), + [anon_sym_no_std] = ACTIONS(884), + [anon_sym_no_implicit_prelude] = ACTIONS(884), + [anon_sym_recursion_limit] = ACTIONS(884), + [anon_sym_type_length_limit] = ACTIONS(884), + [anon_sym_panic_handler] = ACTIONS(884), + [anon_sym_global_allocator] = ACTIONS(884), + [anon_sym_windows_subsystem] = ACTIONS(884), + [anon_sym_feature] = ACTIONS(884), + [anon_sym_non_exhaustive] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(888), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [221] = { - [sym__attr] = STATE(2576), - [sym_custom_attr] = STATE(2576), - [sym_built_in_attr] = STATE(2576), - [sym__built_in_attr_path] = STATE(1867), - [sym_bracketed_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_scoped_identifier] = STATE(1626), - [sym_identifier] = ACTIONS(884), - [anon_sym_path] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_cfg] = ACTIONS(886), - [anon_sym_cfg_attr] = ACTIONS(886), - [anon_sym_test] = ACTIONS(886), - [anon_sym_ignore] = ACTIONS(886), - [anon_sym_should_panic] = ACTIONS(886), - [anon_sym_derive] = ACTIONS(886), - [anon_sym_automatically_derived] = ACTIONS(886), - [anon_sym_macro_export] = ACTIONS(886), - [anon_sym_macro_use] = ACTIONS(886), - [anon_sym_proc_macro] = ACTIONS(886), - [anon_sym_proc_macro_derive] = ACTIONS(886), - [anon_sym_proc_macro_attribute] = ACTIONS(886), - [anon_sym_allow] = ACTIONS(886), - [anon_sym_warn] = ACTIONS(886), - [anon_sym_deny] = ACTIONS(886), - [anon_sym_forbid] = ACTIONS(886), - [anon_sym_deprecated] = ACTIONS(886), - [anon_sym_must_use] = ACTIONS(886), - [anon_sym_link] = ACTIONS(886), - [anon_sym_link_name] = ACTIONS(886), - [anon_sym_no_link] = ACTIONS(886), - [anon_sym_repr] = ACTIONS(886), - [anon_sym_crate_type] = ACTIONS(886), - [anon_sym_no_main] = ACTIONS(886), - [anon_sym_export_name] = ACTIONS(886), - [anon_sym_link_section] = ACTIONS(886), - [anon_sym_no_mangle] = ACTIONS(886), - [anon_sym_used] = ACTIONS(886), - [anon_sym_crate_name] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(886), - [anon_sym_cold] = ACTIONS(886), - [anon_sym_no_builtins] = ACTIONS(886), - [anon_sym_target_feature] = ACTIONS(886), - [anon_sym_track_caller] = ACTIONS(886), - [anon_sym_doc] = ACTIONS(886), - [anon_sym_no_std] = ACTIONS(886), - [anon_sym_no_implicit_prelude] = ACTIONS(886), - [anon_sym_recursion_limit] = ACTIONS(886), - [anon_sym_type_length_limit] = ACTIONS(886), - [anon_sym_panic_handler] = ACTIONS(886), - [anon_sym_global_allocator] = ACTIONS(886), - [anon_sym_windows_subsystem] = ACTIONS(886), - [anon_sym_feature] = ACTIONS(886), - [anon_sym_non_exhaustive] = ACTIONS(886), + [sym__attr] = STATE(2533), + [sym_custom_attr] = STATE(2533), + [sym_built_in_attr] = STATE(2533), + [sym__built_in_attr_path] = STATE(1868), + [sym_bracketed_type] = STATE(2535), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_scoped_identifier] = STATE(1656), + [sym_identifier] = ACTIONS(882), + [anon_sym_path] = ACTIONS(884), + [anon_sym_u8] = ACTIONS(886), + [anon_sym_i8] = ACTIONS(886), + [anon_sym_u16] = ACTIONS(886), + [anon_sym_i16] = ACTIONS(886), + [anon_sym_u32] = ACTIONS(886), + [anon_sym_i32] = ACTIONS(886), + [anon_sym_u64] = ACTIONS(886), + [anon_sym_i64] = ACTIONS(886), + [anon_sym_u128] = ACTIONS(886), + [anon_sym_i128] = ACTIONS(886), + [anon_sym_isize] = ACTIONS(886), + [anon_sym_usize] = ACTIONS(886), + [anon_sym_f32] = ACTIONS(886), + [anon_sym_f64] = ACTIONS(886), + [anon_sym_bool] = ACTIONS(886), + [anon_sym_str] = ACTIONS(886), + [anon_sym_char] = ACTIONS(886), + [anon_sym_default] = ACTIONS(886), + [anon_sym_union] = ACTIONS(886), + [anon_sym_cfg] = ACTIONS(884), + [anon_sym_cfg_attr] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_ignore] = ACTIONS(884), + [anon_sym_should_panic] = ACTIONS(884), + [anon_sym_derive] = ACTIONS(884), + [anon_sym_automatically_derived] = ACTIONS(884), + [anon_sym_macro_export] = ACTIONS(884), + [anon_sym_macro_use] = ACTIONS(884), + [anon_sym_proc_macro] = ACTIONS(884), + [anon_sym_proc_macro_derive] = ACTIONS(884), + [anon_sym_proc_macro_attribute] = ACTIONS(884), + [anon_sym_allow] = ACTIONS(884), + [anon_sym_warn] = ACTIONS(884), + [anon_sym_deny] = ACTIONS(884), + [anon_sym_forbid] = ACTIONS(884), + [anon_sym_deprecated] = ACTIONS(884), + [anon_sym_must_use] = ACTIONS(884), + [anon_sym_link] = ACTIONS(884), + [anon_sym_link_name] = ACTIONS(884), + [anon_sym_no_link] = ACTIONS(884), + [anon_sym_repr] = ACTIONS(884), + [anon_sym_crate_type] = ACTIONS(884), + [anon_sym_no_main] = ACTIONS(884), + [anon_sym_export_name] = ACTIONS(884), + [anon_sym_link_section] = ACTIONS(884), + [anon_sym_no_mangle] = ACTIONS(884), + [anon_sym_used] = ACTIONS(884), + [anon_sym_crate_name] = ACTIONS(884), + [anon_sym_inline] = ACTIONS(884), + [anon_sym_cold] = ACTIONS(884), + [anon_sym_no_builtins] = ACTIONS(884), + [anon_sym_target_feature] = ACTIONS(884), + [anon_sym_track_caller] = ACTIONS(884), + [anon_sym_doc] = ACTIONS(884), + [anon_sym_no_std] = ACTIONS(884), + [anon_sym_no_implicit_prelude] = ACTIONS(884), + [anon_sym_recursion_limit] = ACTIONS(884), + [anon_sym_type_length_limit] = ACTIONS(884), + [anon_sym_panic_handler] = ACTIONS(884), + [anon_sym_global_allocator] = ACTIONS(884), + [anon_sym_windows_subsystem] = ACTIONS(884), + [anon_sym_feature] = ACTIONS(884), + [anon_sym_non_exhaustive] = ACTIONS(884), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(888), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [222] = { - [sym__attr] = STATE(2373), - [sym_custom_attr] = STATE(2373), - [sym_built_in_attr] = STATE(2373), - [sym__built_in_attr_path] = STATE(1867), - [sym_bracketed_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_scoped_identifier] = STATE(1626), - [sym_identifier] = ACTIONS(884), - [anon_sym_path] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_cfg] = ACTIONS(886), - [anon_sym_cfg_attr] = ACTIONS(886), - [anon_sym_test] = ACTIONS(886), - [anon_sym_ignore] = ACTIONS(886), - [anon_sym_should_panic] = ACTIONS(886), - [anon_sym_derive] = ACTIONS(886), - [anon_sym_automatically_derived] = ACTIONS(886), - [anon_sym_macro_export] = ACTIONS(886), - [anon_sym_macro_use] = ACTIONS(886), - [anon_sym_proc_macro] = ACTIONS(886), - [anon_sym_proc_macro_derive] = ACTIONS(886), - [anon_sym_proc_macro_attribute] = ACTIONS(886), - [anon_sym_allow] = ACTIONS(886), - [anon_sym_warn] = ACTIONS(886), - [anon_sym_deny] = ACTIONS(886), - [anon_sym_forbid] = ACTIONS(886), - [anon_sym_deprecated] = ACTIONS(886), - [anon_sym_must_use] = ACTIONS(886), - [anon_sym_link] = ACTIONS(886), - [anon_sym_link_name] = ACTIONS(886), - [anon_sym_no_link] = ACTIONS(886), - [anon_sym_repr] = ACTIONS(886), - [anon_sym_crate_type] = ACTIONS(886), - [anon_sym_no_main] = ACTIONS(886), - [anon_sym_export_name] = ACTIONS(886), - [anon_sym_link_section] = ACTIONS(886), - [anon_sym_no_mangle] = ACTIONS(886), - [anon_sym_used] = ACTIONS(886), - [anon_sym_crate_name] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(886), - [anon_sym_cold] = ACTIONS(886), - [anon_sym_no_builtins] = ACTIONS(886), - [anon_sym_target_feature] = ACTIONS(886), - [anon_sym_track_caller] = ACTIONS(886), - [anon_sym_doc] = ACTIONS(886), - [anon_sym_no_std] = ACTIONS(886), - [anon_sym_no_implicit_prelude] = ACTIONS(886), - [anon_sym_recursion_limit] = ACTIONS(886), - [anon_sym_type_length_limit] = ACTIONS(886), - [anon_sym_panic_handler] = ACTIONS(886), - [anon_sym_global_allocator] = ACTIONS(886), - [anon_sym_windows_subsystem] = ACTIONS(886), - [anon_sym_feature] = ACTIONS(886), - [anon_sym_non_exhaustive] = ACTIONS(886), + [sym__attr] = STATE(2528), + [sym_custom_attr] = STATE(2528), + [sym_built_in_attr] = STATE(2528), + [sym__built_in_attr_path] = STATE(1868), + [sym_bracketed_type] = STATE(2535), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_scoped_identifier] = STATE(1656), + [sym_identifier] = ACTIONS(882), + [anon_sym_path] = ACTIONS(884), + [anon_sym_u8] = ACTIONS(886), + [anon_sym_i8] = ACTIONS(886), + [anon_sym_u16] = ACTIONS(886), + [anon_sym_i16] = ACTIONS(886), + [anon_sym_u32] = ACTIONS(886), + [anon_sym_i32] = ACTIONS(886), + [anon_sym_u64] = ACTIONS(886), + [anon_sym_i64] = ACTIONS(886), + [anon_sym_u128] = ACTIONS(886), + [anon_sym_i128] = ACTIONS(886), + [anon_sym_isize] = ACTIONS(886), + [anon_sym_usize] = ACTIONS(886), + [anon_sym_f32] = ACTIONS(886), + [anon_sym_f64] = ACTIONS(886), + [anon_sym_bool] = ACTIONS(886), + [anon_sym_str] = ACTIONS(886), + [anon_sym_char] = ACTIONS(886), + [anon_sym_default] = ACTIONS(886), + [anon_sym_union] = ACTIONS(886), + [anon_sym_cfg] = ACTIONS(884), + [anon_sym_cfg_attr] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_ignore] = ACTIONS(884), + [anon_sym_should_panic] = ACTIONS(884), + [anon_sym_derive] = ACTIONS(884), + [anon_sym_automatically_derived] = ACTIONS(884), + [anon_sym_macro_export] = ACTIONS(884), + [anon_sym_macro_use] = ACTIONS(884), + [anon_sym_proc_macro] = ACTIONS(884), + [anon_sym_proc_macro_derive] = ACTIONS(884), + [anon_sym_proc_macro_attribute] = ACTIONS(884), + [anon_sym_allow] = ACTIONS(884), + [anon_sym_warn] = ACTIONS(884), + [anon_sym_deny] = ACTIONS(884), + [anon_sym_forbid] = ACTIONS(884), + [anon_sym_deprecated] = ACTIONS(884), + [anon_sym_must_use] = ACTIONS(884), + [anon_sym_link] = ACTIONS(884), + [anon_sym_link_name] = ACTIONS(884), + [anon_sym_no_link] = ACTIONS(884), + [anon_sym_repr] = ACTIONS(884), + [anon_sym_crate_type] = ACTIONS(884), + [anon_sym_no_main] = ACTIONS(884), + [anon_sym_export_name] = ACTIONS(884), + [anon_sym_link_section] = ACTIONS(884), + [anon_sym_no_mangle] = ACTIONS(884), + [anon_sym_used] = ACTIONS(884), + [anon_sym_crate_name] = ACTIONS(884), + [anon_sym_inline] = ACTIONS(884), + [anon_sym_cold] = ACTIONS(884), + [anon_sym_no_builtins] = ACTIONS(884), + [anon_sym_target_feature] = ACTIONS(884), + [anon_sym_track_caller] = ACTIONS(884), + [anon_sym_doc] = ACTIONS(884), + [anon_sym_no_std] = ACTIONS(884), + [anon_sym_no_implicit_prelude] = ACTIONS(884), + [anon_sym_recursion_limit] = ACTIONS(884), + [anon_sym_type_length_limit] = ACTIONS(884), + [anon_sym_panic_handler] = ACTIONS(884), + [anon_sym_global_allocator] = ACTIONS(884), + [anon_sym_windows_subsystem] = ACTIONS(884), + [anon_sym_feature] = ACTIONS(884), + [anon_sym_non_exhaustive] = ACTIONS(884), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(888), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [223] = { - [sym__attr] = STATE(2470), - [sym_custom_attr] = STATE(2470), - [sym_built_in_attr] = STATE(2470), - [sym__built_in_attr_path] = STATE(1867), - [sym_bracketed_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_scoped_identifier] = STATE(1626), - [sym_identifier] = ACTIONS(884), - [anon_sym_path] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_cfg] = ACTIONS(886), - [anon_sym_cfg_attr] = ACTIONS(886), - [anon_sym_test] = ACTIONS(886), - [anon_sym_ignore] = ACTIONS(886), - [anon_sym_should_panic] = ACTIONS(886), - [anon_sym_derive] = ACTIONS(886), - [anon_sym_automatically_derived] = ACTIONS(886), - [anon_sym_macro_export] = ACTIONS(886), - [anon_sym_macro_use] = ACTIONS(886), - [anon_sym_proc_macro] = ACTIONS(886), - [anon_sym_proc_macro_derive] = ACTIONS(886), - [anon_sym_proc_macro_attribute] = ACTIONS(886), - [anon_sym_allow] = ACTIONS(886), - [anon_sym_warn] = ACTIONS(886), - [anon_sym_deny] = ACTIONS(886), - [anon_sym_forbid] = ACTIONS(886), - [anon_sym_deprecated] = ACTIONS(886), - [anon_sym_must_use] = ACTIONS(886), - [anon_sym_link] = ACTIONS(886), - [anon_sym_link_name] = ACTIONS(886), - [anon_sym_no_link] = ACTIONS(886), - [anon_sym_repr] = ACTIONS(886), - [anon_sym_crate_type] = ACTIONS(886), - [anon_sym_no_main] = ACTIONS(886), - [anon_sym_export_name] = ACTIONS(886), - [anon_sym_link_section] = ACTIONS(886), - [anon_sym_no_mangle] = ACTIONS(886), - [anon_sym_used] = ACTIONS(886), - [anon_sym_crate_name] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(886), - [anon_sym_cold] = ACTIONS(886), - [anon_sym_no_builtins] = ACTIONS(886), - [anon_sym_target_feature] = ACTIONS(886), - [anon_sym_track_caller] = ACTIONS(886), - [anon_sym_doc] = ACTIONS(886), - [anon_sym_no_std] = ACTIONS(886), - [anon_sym_no_implicit_prelude] = ACTIONS(886), - [anon_sym_recursion_limit] = ACTIONS(886), - [anon_sym_type_length_limit] = ACTIONS(886), - [anon_sym_panic_handler] = ACTIONS(886), - [anon_sym_global_allocator] = ACTIONS(886), - [anon_sym_windows_subsystem] = ACTIONS(886), - [anon_sym_feature] = ACTIONS(886), - [anon_sym_non_exhaustive] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_else_clause] = STATE(243), + [sym_identifier] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_u8] = ACTIONS(500), + [anon_sym_i8] = ACTIONS(500), + [anon_sym_u16] = ACTIONS(500), + [anon_sym_i16] = ACTIONS(500), + [anon_sym_u32] = ACTIONS(500), + [anon_sym_i32] = ACTIONS(500), + [anon_sym_u64] = ACTIONS(500), + [anon_sym_i64] = ACTIONS(500), + [anon_sym_u128] = ACTIONS(500), + [anon_sym_i128] = ACTIONS(500), + [anon_sym_isize] = ACTIONS(500), + [anon_sym_usize] = ACTIONS(500), + [anon_sym_f32] = ACTIONS(500), + [anon_sym_f64] = ACTIONS(500), + [anon_sym_bool] = ACTIONS(500), + [anon_sym_str] = ACTIONS(500), + [anon_sym_char] = ACTIONS(500), + [anon_sym_as] = ACTIONS(500), + [anon_sym_const] = ACTIONS(500), + [anon_sym_default] = ACTIONS(500), + [anon_sym_union] = ACTIONS(500), + [anon_sym_POUND] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_COMMA] = ACTIONS(498), + [anon_sym_ref] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_else] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(498), + [anon_sym__] = ACTIONS(500), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(498), + [sym_mutable_specifier] = ACTIONS(500), + [anon_sym_DOT_DOT] = ACTIONS(500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(498), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_AMP_AMP] = ACTIONS(498), + [anon_sym_PIPE_PIPE] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_CARET] = ACTIONS(500), + [anon_sym_EQ_EQ] = ACTIONS(498), + [anon_sym_BANG_EQ] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_GT_GT] = ACTIONS(500), + [anon_sym_SLASH] = ACTIONS(500), + [anon_sym_PERCENT] = ACTIONS(500), + [anon_sym_PLUS_EQ] = ACTIONS(498), + [anon_sym_DASH_EQ] = ACTIONS(498), + [anon_sym_STAR_EQ] = ACTIONS(498), + [anon_sym_SLASH_EQ] = ACTIONS(498), + [anon_sym_PERCENT_EQ] = ACTIONS(498), + [anon_sym_AMP_EQ] = ACTIONS(498), + [anon_sym_PIPE_EQ] = ACTIONS(498), + [anon_sym_CARET_EQ] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(498), + [anon_sym_GT_GT_EQ] = ACTIONS(498), + [anon_sym_DOT] = ACTIONS(500), + [sym_integer_literal] = ACTIONS(498), + [aux_sym_string_literal_token1] = ACTIONS(498), + [sym_char_literal] = ACTIONS(498), + [anon_sym_true] = ACTIONS(500), + [anon_sym_false] = ACTIONS(500), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(500), + [sym_super] = ACTIONS(500), + [sym_crate] = ACTIONS(500), + [sym_metavariable] = ACTIONS(498), + [sym_raw_string_literal] = ACTIONS(498), + [sym_float_literal] = ACTIONS(498), [sym_block_comment] = ACTIONS(3), }, [224] = { - [sym__attr] = STATE(2415), - [sym_custom_attr] = STATE(2415), - [sym_built_in_attr] = STATE(2415), - [sym__built_in_attr_path] = STATE(1867), - [sym_bracketed_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_scoped_identifier] = STATE(1626), - [sym_identifier] = ACTIONS(884), - [anon_sym_path] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_cfg] = ACTIONS(886), - [anon_sym_cfg_attr] = ACTIONS(886), - [anon_sym_test] = ACTIONS(886), - [anon_sym_ignore] = ACTIONS(886), - [anon_sym_should_panic] = ACTIONS(886), - [anon_sym_derive] = ACTIONS(886), - [anon_sym_automatically_derived] = ACTIONS(886), - [anon_sym_macro_export] = ACTIONS(886), - [anon_sym_macro_use] = ACTIONS(886), - [anon_sym_proc_macro] = ACTIONS(886), - [anon_sym_proc_macro_derive] = ACTIONS(886), - [anon_sym_proc_macro_attribute] = ACTIONS(886), - [anon_sym_allow] = ACTIONS(886), - [anon_sym_warn] = ACTIONS(886), - [anon_sym_deny] = ACTIONS(886), - [anon_sym_forbid] = ACTIONS(886), - [anon_sym_deprecated] = ACTIONS(886), - [anon_sym_must_use] = ACTIONS(886), - [anon_sym_link] = ACTIONS(886), - [anon_sym_link_name] = ACTIONS(886), - [anon_sym_no_link] = ACTIONS(886), - [anon_sym_repr] = ACTIONS(886), - [anon_sym_crate_type] = ACTIONS(886), - [anon_sym_no_main] = ACTIONS(886), - [anon_sym_export_name] = ACTIONS(886), - [anon_sym_link_section] = ACTIONS(886), - [anon_sym_no_mangle] = ACTIONS(886), - [anon_sym_used] = ACTIONS(886), - [anon_sym_crate_name] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(886), - [anon_sym_cold] = ACTIONS(886), - [anon_sym_no_builtins] = ACTIONS(886), - [anon_sym_target_feature] = ACTIONS(886), - [anon_sym_track_caller] = ACTIONS(886), - [anon_sym_doc] = ACTIONS(886), - [anon_sym_no_std] = ACTIONS(886), - [anon_sym_no_implicit_prelude] = ACTIONS(886), - [anon_sym_recursion_limit] = ACTIONS(886), - [anon_sym_type_length_limit] = ACTIONS(886), - [anon_sym_panic_handler] = ACTIONS(886), - [anon_sym_global_allocator] = ACTIONS(886), - [anon_sym_windows_subsystem] = ACTIONS(886), - [anon_sym_feature] = ACTIONS(886), - [anon_sym_non_exhaustive] = ACTIONS(886), + [sym__attr] = STATE(2388), + [sym_custom_attr] = STATE(2388), + [sym_built_in_attr] = STATE(2388), + [sym__built_in_attr_path] = STATE(1868), + [sym_bracketed_type] = STATE(2535), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_scoped_identifier] = STATE(1656), + [sym_identifier] = ACTIONS(882), + [anon_sym_path] = ACTIONS(884), + [anon_sym_u8] = ACTIONS(886), + [anon_sym_i8] = ACTIONS(886), + [anon_sym_u16] = ACTIONS(886), + [anon_sym_i16] = ACTIONS(886), + [anon_sym_u32] = ACTIONS(886), + [anon_sym_i32] = ACTIONS(886), + [anon_sym_u64] = ACTIONS(886), + [anon_sym_i64] = ACTIONS(886), + [anon_sym_u128] = ACTIONS(886), + [anon_sym_i128] = ACTIONS(886), + [anon_sym_isize] = ACTIONS(886), + [anon_sym_usize] = ACTIONS(886), + [anon_sym_f32] = ACTIONS(886), + [anon_sym_f64] = ACTIONS(886), + [anon_sym_bool] = ACTIONS(886), + [anon_sym_str] = ACTIONS(886), + [anon_sym_char] = ACTIONS(886), + [anon_sym_default] = ACTIONS(886), + [anon_sym_union] = ACTIONS(886), + [anon_sym_cfg] = ACTIONS(884), + [anon_sym_cfg_attr] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_ignore] = ACTIONS(884), + [anon_sym_should_panic] = ACTIONS(884), + [anon_sym_derive] = ACTIONS(884), + [anon_sym_automatically_derived] = ACTIONS(884), + [anon_sym_macro_export] = ACTIONS(884), + [anon_sym_macro_use] = ACTIONS(884), + [anon_sym_proc_macro] = ACTIONS(884), + [anon_sym_proc_macro_derive] = ACTIONS(884), + [anon_sym_proc_macro_attribute] = ACTIONS(884), + [anon_sym_allow] = ACTIONS(884), + [anon_sym_warn] = ACTIONS(884), + [anon_sym_deny] = ACTIONS(884), + [anon_sym_forbid] = ACTIONS(884), + [anon_sym_deprecated] = ACTIONS(884), + [anon_sym_must_use] = ACTIONS(884), + [anon_sym_link] = ACTIONS(884), + [anon_sym_link_name] = ACTIONS(884), + [anon_sym_no_link] = ACTIONS(884), + [anon_sym_repr] = ACTIONS(884), + [anon_sym_crate_type] = ACTIONS(884), + [anon_sym_no_main] = ACTIONS(884), + [anon_sym_export_name] = ACTIONS(884), + [anon_sym_link_section] = ACTIONS(884), + [anon_sym_no_mangle] = ACTIONS(884), + [anon_sym_used] = ACTIONS(884), + [anon_sym_crate_name] = ACTIONS(884), + [anon_sym_inline] = ACTIONS(884), + [anon_sym_cold] = ACTIONS(884), + [anon_sym_no_builtins] = ACTIONS(884), + [anon_sym_target_feature] = ACTIONS(884), + [anon_sym_track_caller] = ACTIONS(884), + [anon_sym_doc] = ACTIONS(884), + [anon_sym_no_std] = ACTIONS(884), + [anon_sym_no_implicit_prelude] = ACTIONS(884), + [anon_sym_recursion_limit] = ACTIONS(884), + [anon_sym_type_length_limit] = ACTIONS(884), + [anon_sym_panic_handler] = ACTIONS(884), + [anon_sym_global_allocator] = ACTIONS(884), + [anon_sym_windows_subsystem] = ACTIONS(884), + [anon_sym_feature] = ACTIONS(884), + [anon_sym_non_exhaustive] = ACTIONS(884), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(888), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [225] = { - [sym__attr] = STATE(2537), - [sym_custom_attr] = STATE(2537), - [sym_built_in_attr] = STATE(2537), - [sym__built_in_attr_path] = STATE(1867), - [sym_bracketed_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_scoped_identifier] = STATE(1626), - [sym_identifier] = ACTIONS(884), - [anon_sym_path] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_cfg] = ACTIONS(886), - [anon_sym_cfg_attr] = ACTIONS(886), - [anon_sym_test] = ACTIONS(886), - [anon_sym_ignore] = ACTIONS(886), - [anon_sym_should_panic] = ACTIONS(886), - [anon_sym_derive] = ACTIONS(886), - [anon_sym_automatically_derived] = ACTIONS(886), - [anon_sym_macro_export] = ACTIONS(886), - [anon_sym_macro_use] = ACTIONS(886), - [anon_sym_proc_macro] = ACTIONS(886), - [anon_sym_proc_macro_derive] = ACTIONS(886), - [anon_sym_proc_macro_attribute] = ACTIONS(886), - [anon_sym_allow] = ACTIONS(886), - [anon_sym_warn] = ACTIONS(886), - [anon_sym_deny] = ACTIONS(886), - [anon_sym_forbid] = ACTIONS(886), - [anon_sym_deprecated] = ACTIONS(886), - [anon_sym_must_use] = ACTIONS(886), - [anon_sym_link] = ACTIONS(886), - [anon_sym_link_name] = ACTIONS(886), - [anon_sym_no_link] = ACTIONS(886), - [anon_sym_repr] = ACTIONS(886), - [anon_sym_crate_type] = ACTIONS(886), - [anon_sym_no_main] = ACTIONS(886), - [anon_sym_export_name] = ACTIONS(886), - [anon_sym_link_section] = ACTIONS(886), - [anon_sym_no_mangle] = ACTIONS(886), - [anon_sym_used] = ACTIONS(886), - [anon_sym_crate_name] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(886), - [anon_sym_cold] = ACTIONS(886), - [anon_sym_no_builtins] = ACTIONS(886), - [anon_sym_target_feature] = ACTIONS(886), - [anon_sym_track_caller] = ACTIONS(886), - [anon_sym_doc] = ACTIONS(886), - [anon_sym_no_std] = ACTIONS(886), - [anon_sym_no_implicit_prelude] = ACTIONS(886), - [anon_sym_recursion_limit] = ACTIONS(886), - [anon_sym_type_length_limit] = ACTIONS(886), - [anon_sym_panic_handler] = ACTIONS(886), - [anon_sym_global_allocator] = ACTIONS(886), - [anon_sym_windows_subsystem] = ACTIONS(886), - [anon_sym_feature] = ACTIONS(886), - [anon_sym_non_exhaustive] = ACTIONS(886), + [sym__attr] = STATE(2403), + [sym_custom_attr] = STATE(2403), + [sym_built_in_attr] = STATE(2403), + [sym__built_in_attr_path] = STATE(1868), + [sym_bracketed_type] = STATE(2535), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_scoped_identifier] = STATE(1656), + [sym_identifier] = ACTIONS(882), + [anon_sym_path] = ACTIONS(884), + [anon_sym_u8] = ACTIONS(886), + [anon_sym_i8] = ACTIONS(886), + [anon_sym_u16] = ACTIONS(886), + [anon_sym_i16] = ACTIONS(886), + [anon_sym_u32] = ACTIONS(886), + [anon_sym_i32] = ACTIONS(886), + [anon_sym_u64] = ACTIONS(886), + [anon_sym_i64] = ACTIONS(886), + [anon_sym_u128] = ACTIONS(886), + [anon_sym_i128] = ACTIONS(886), + [anon_sym_isize] = ACTIONS(886), + [anon_sym_usize] = ACTIONS(886), + [anon_sym_f32] = ACTIONS(886), + [anon_sym_f64] = ACTIONS(886), + [anon_sym_bool] = ACTIONS(886), + [anon_sym_str] = ACTIONS(886), + [anon_sym_char] = ACTIONS(886), + [anon_sym_default] = ACTIONS(886), + [anon_sym_union] = ACTIONS(886), + [anon_sym_cfg] = ACTIONS(884), + [anon_sym_cfg_attr] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_ignore] = ACTIONS(884), + [anon_sym_should_panic] = ACTIONS(884), + [anon_sym_derive] = ACTIONS(884), + [anon_sym_automatically_derived] = ACTIONS(884), + [anon_sym_macro_export] = ACTIONS(884), + [anon_sym_macro_use] = ACTIONS(884), + [anon_sym_proc_macro] = ACTIONS(884), + [anon_sym_proc_macro_derive] = ACTIONS(884), + [anon_sym_proc_macro_attribute] = ACTIONS(884), + [anon_sym_allow] = ACTIONS(884), + [anon_sym_warn] = ACTIONS(884), + [anon_sym_deny] = ACTIONS(884), + [anon_sym_forbid] = ACTIONS(884), + [anon_sym_deprecated] = ACTIONS(884), + [anon_sym_must_use] = ACTIONS(884), + [anon_sym_link] = ACTIONS(884), + [anon_sym_link_name] = ACTIONS(884), + [anon_sym_no_link] = ACTIONS(884), + [anon_sym_repr] = ACTIONS(884), + [anon_sym_crate_type] = ACTIONS(884), + [anon_sym_no_main] = ACTIONS(884), + [anon_sym_export_name] = ACTIONS(884), + [anon_sym_link_section] = ACTIONS(884), + [anon_sym_no_mangle] = ACTIONS(884), + [anon_sym_used] = ACTIONS(884), + [anon_sym_crate_name] = ACTIONS(884), + [anon_sym_inline] = ACTIONS(884), + [anon_sym_cold] = ACTIONS(884), + [anon_sym_no_builtins] = ACTIONS(884), + [anon_sym_target_feature] = ACTIONS(884), + [anon_sym_track_caller] = ACTIONS(884), + [anon_sym_doc] = ACTIONS(884), + [anon_sym_no_std] = ACTIONS(884), + [anon_sym_no_implicit_prelude] = ACTIONS(884), + [anon_sym_recursion_limit] = ACTIONS(884), + [anon_sym_type_length_limit] = ACTIONS(884), + [anon_sym_panic_handler] = ACTIONS(884), + [anon_sym_global_allocator] = ACTIONS(884), + [anon_sym_windows_subsystem] = ACTIONS(884), + [anon_sym_feature] = ACTIONS(884), + [anon_sym_non_exhaustive] = ACTIONS(884), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(888), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [226] = { - [sym_else_clause] = STATE(242), - [sym_identifier] = ACTIONS(502), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(502), - [anon_sym_QMARK] = ACTIONS(500), - [anon_sym_u8] = ACTIONS(502), - [anon_sym_i8] = ACTIONS(502), - [anon_sym_u16] = ACTIONS(502), - [anon_sym_i16] = ACTIONS(502), - [anon_sym_u32] = ACTIONS(502), - [anon_sym_i32] = ACTIONS(502), - [anon_sym_u64] = ACTIONS(502), - [anon_sym_i64] = ACTIONS(502), - [anon_sym_u128] = ACTIONS(502), - [anon_sym_i128] = ACTIONS(502), - [anon_sym_isize] = ACTIONS(502), - [anon_sym_usize] = ACTIONS(502), - [anon_sym_f32] = ACTIONS(502), - [anon_sym_f64] = ACTIONS(502), - [anon_sym_bool] = ACTIONS(502), - [anon_sym_str] = ACTIONS(502), - [anon_sym_char] = ACTIONS(502), - [anon_sym_as] = ACTIONS(502), - [anon_sym_const] = ACTIONS(502), - [anon_sym_default] = ACTIONS(502), - [anon_sym_union] = ACTIONS(502), - [anon_sym_POUND] = ACTIONS(500), - [anon_sym_EQ] = ACTIONS(502), - [anon_sym_COMMA] = ACTIONS(500), - [anon_sym_ref] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(502), - [anon_sym_GT] = ACTIONS(502), - [anon_sym_COLON_COLON] = ACTIONS(500), - [anon_sym__] = ACTIONS(502), - [anon_sym_AMP] = ACTIONS(502), - [anon_sym_DOT_DOT_DOT] = ACTIONS(500), - [sym_mutable_specifier] = ACTIONS(502), - [anon_sym_DOT_DOT] = ACTIONS(502), - [anon_sym_DOT_DOT_EQ] = ACTIONS(500), - [anon_sym_DASH] = ACTIONS(502), - [anon_sym_AMP_AMP] = ACTIONS(500), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_PIPE] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_EQ_EQ] = ACTIONS(500), - [anon_sym_BANG_EQ] = ACTIONS(500), - [anon_sym_LT_EQ] = ACTIONS(500), - [anon_sym_GT_EQ] = ACTIONS(500), - [anon_sym_LT_LT] = ACTIONS(502), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_SLASH] = ACTIONS(502), - [anon_sym_PERCENT] = ACTIONS(502), - [anon_sym_PLUS_EQ] = ACTIONS(500), - [anon_sym_DASH_EQ] = ACTIONS(500), - [anon_sym_STAR_EQ] = ACTIONS(500), - [anon_sym_SLASH_EQ] = ACTIONS(500), - [anon_sym_PERCENT_EQ] = ACTIONS(500), - [anon_sym_AMP_EQ] = ACTIONS(500), - [anon_sym_PIPE_EQ] = ACTIONS(500), - [anon_sym_CARET_EQ] = ACTIONS(500), - [anon_sym_LT_LT_EQ] = ACTIONS(500), - [anon_sym_GT_GT_EQ] = ACTIONS(500), - [anon_sym_else] = ACTIONS(882), - [anon_sym_DOT] = ACTIONS(502), - [sym_integer_literal] = ACTIONS(500), - [aux_sym_string_literal_token1] = ACTIONS(500), - [sym_char_literal] = ACTIONS(500), - [anon_sym_true] = ACTIONS(502), - [anon_sym_false] = ACTIONS(502), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(502), - [sym_super] = ACTIONS(502), - [sym_crate] = ACTIONS(502), - [sym_metavariable] = ACTIONS(500), - [sym_raw_string_literal] = ACTIONS(500), - [sym_float_literal] = ACTIONS(500), + [sym_else_clause] = STATE(235), + [sym_identifier] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(490), + [anon_sym_u8] = ACTIONS(492), + [anon_sym_i8] = ACTIONS(492), + [anon_sym_u16] = ACTIONS(492), + [anon_sym_i16] = ACTIONS(492), + [anon_sym_u32] = ACTIONS(492), + [anon_sym_i32] = ACTIONS(492), + [anon_sym_u64] = ACTIONS(492), + [anon_sym_i64] = ACTIONS(492), + [anon_sym_u128] = ACTIONS(492), + [anon_sym_i128] = ACTIONS(492), + [anon_sym_isize] = ACTIONS(492), + [anon_sym_usize] = ACTIONS(492), + [anon_sym_f32] = ACTIONS(492), + [anon_sym_f64] = ACTIONS(492), + [anon_sym_bool] = ACTIONS(492), + [anon_sym_str] = ACTIONS(492), + [anon_sym_char] = ACTIONS(492), + [anon_sym_as] = ACTIONS(492), + [anon_sym_const] = ACTIONS(492), + [anon_sym_default] = ACTIONS(492), + [anon_sym_union] = ACTIONS(492), + [anon_sym_POUND] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(490), + [anon_sym_ref] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_else] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(490), + [anon_sym__] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(492), + [anon_sym_DOT_DOT_DOT] = ACTIONS(490), + [sym_mutable_specifier] = ACTIONS(492), + [anon_sym_DOT_DOT] = ACTIONS(492), + [anon_sym_DOT_DOT_EQ] = ACTIONS(490), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_AMP_AMP] = ACTIONS(490), + [anon_sym_PIPE_PIPE] = ACTIONS(490), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_EQ_EQ] = ACTIONS(490), + [anon_sym_BANG_EQ] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(492), + [anon_sym_GT_GT] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(492), + [anon_sym_PLUS_EQ] = ACTIONS(490), + [anon_sym_DASH_EQ] = ACTIONS(490), + [anon_sym_STAR_EQ] = ACTIONS(490), + [anon_sym_SLASH_EQ] = ACTIONS(490), + [anon_sym_PERCENT_EQ] = ACTIONS(490), + [anon_sym_AMP_EQ] = ACTIONS(490), + [anon_sym_PIPE_EQ] = ACTIONS(490), + [anon_sym_CARET_EQ] = ACTIONS(490), + [anon_sym_LT_LT_EQ] = ACTIONS(490), + [anon_sym_GT_GT_EQ] = ACTIONS(490), + [anon_sym_DOT] = ACTIONS(492), + [sym_integer_literal] = ACTIONS(490), + [aux_sym_string_literal_token1] = ACTIONS(490), + [sym_char_literal] = ACTIONS(490), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(492), + [sym_super] = ACTIONS(492), + [sym_crate] = ACTIONS(492), + [sym_metavariable] = ACTIONS(490), + [sym_raw_string_literal] = ACTIONS(490), + [sym_float_literal] = ACTIONS(490), [sym_block_comment] = ACTIONS(3), }, [227] = { - [sym__attr] = STATE(2449), - [sym_custom_attr] = STATE(2449), - [sym_built_in_attr] = STATE(2449), - [sym__built_in_attr_path] = STATE(1867), - [sym_bracketed_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_scoped_identifier] = STATE(1626), - [sym_identifier] = ACTIONS(884), - [anon_sym_path] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_cfg] = ACTIONS(886), - [anon_sym_cfg_attr] = ACTIONS(886), - [anon_sym_test] = ACTIONS(886), - [anon_sym_ignore] = ACTIONS(886), - [anon_sym_should_panic] = ACTIONS(886), - [anon_sym_derive] = ACTIONS(886), - [anon_sym_automatically_derived] = ACTIONS(886), - [anon_sym_macro_export] = ACTIONS(886), - [anon_sym_macro_use] = ACTIONS(886), - [anon_sym_proc_macro] = ACTIONS(886), - [anon_sym_proc_macro_derive] = ACTIONS(886), - [anon_sym_proc_macro_attribute] = ACTIONS(886), - [anon_sym_allow] = ACTIONS(886), - [anon_sym_warn] = ACTIONS(886), - [anon_sym_deny] = ACTIONS(886), - [anon_sym_forbid] = ACTIONS(886), - [anon_sym_deprecated] = ACTIONS(886), - [anon_sym_must_use] = ACTIONS(886), - [anon_sym_link] = ACTIONS(886), - [anon_sym_link_name] = ACTIONS(886), - [anon_sym_no_link] = ACTIONS(886), - [anon_sym_repr] = ACTIONS(886), - [anon_sym_crate_type] = ACTIONS(886), - [anon_sym_no_main] = ACTIONS(886), - [anon_sym_export_name] = ACTIONS(886), - [anon_sym_link_section] = ACTIONS(886), - [anon_sym_no_mangle] = ACTIONS(886), - [anon_sym_used] = ACTIONS(886), - [anon_sym_crate_name] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(886), - [anon_sym_cold] = ACTIONS(886), - [anon_sym_no_builtins] = ACTIONS(886), - [anon_sym_target_feature] = ACTIONS(886), - [anon_sym_track_caller] = ACTIONS(886), - [anon_sym_doc] = ACTIONS(886), - [anon_sym_no_std] = ACTIONS(886), - [anon_sym_no_implicit_prelude] = ACTIONS(886), - [anon_sym_recursion_limit] = ACTIONS(886), - [anon_sym_type_length_limit] = ACTIONS(886), - [anon_sym_panic_handler] = ACTIONS(886), - [anon_sym_global_allocator] = ACTIONS(886), - [anon_sym_windows_subsystem] = ACTIONS(886), - [anon_sym_feature] = ACTIONS(886), - [anon_sym_non_exhaustive] = ACTIONS(886), + [sym__attr] = STATE(2474), + [sym_custom_attr] = STATE(2474), + [sym_built_in_attr] = STATE(2474), + [sym__built_in_attr_path] = STATE(1868), + [sym_bracketed_type] = STATE(2535), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_scoped_identifier] = STATE(1656), + [sym_identifier] = ACTIONS(882), + [anon_sym_path] = ACTIONS(884), + [anon_sym_u8] = ACTIONS(886), + [anon_sym_i8] = ACTIONS(886), + [anon_sym_u16] = ACTIONS(886), + [anon_sym_i16] = ACTIONS(886), + [anon_sym_u32] = ACTIONS(886), + [anon_sym_i32] = ACTIONS(886), + [anon_sym_u64] = ACTIONS(886), + [anon_sym_i64] = ACTIONS(886), + [anon_sym_u128] = ACTIONS(886), + [anon_sym_i128] = ACTIONS(886), + [anon_sym_isize] = ACTIONS(886), + [anon_sym_usize] = ACTIONS(886), + [anon_sym_f32] = ACTIONS(886), + [anon_sym_f64] = ACTIONS(886), + [anon_sym_bool] = ACTIONS(886), + [anon_sym_str] = ACTIONS(886), + [anon_sym_char] = ACTIONS(886), + [anon_sym_default] = ACTIONS(886), + [anon_sym_union] = ACTIONS(886), + [anon_sym_cfg] = ACTIONS(884), + [anon_sym_cfg_attr] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_ignore] = ACTIONS(884), + [anon_sym_should_panic] = ACTIONS(884), + [anon_sym_derive] = ACTIONS(884), + [anon_sym_automatically_derived] = ACTIONS(884), + [anon_sym_macro_export] = ACTIONS(884), + [anon_sym_macro_use] = ACTIONS(884), + [anon_sym_proc_macro] = ACTIONS(884), + [anon_sym_proc_macro_derive] = ACTIONS(884), + [anon_sym_proc_macro_attribute] = ACTIONS(884), + [anon_sym_allow] = ACTIONS(884), + [anon_sym_warn] = ACTIONS(884), + [anon_sym_deny] = ACTIONS(884), + [anon_sym_forbid] = ACTIONS(884), + [anon_sym_deprecated] = ACTIONS(884), + [anon_sym_must_use] = ACTIONS(884), + [anon_sym_link] = ACTIONS(884), + [anon_sym_link_name] = ACTIONS(884), + [anon_sym_no_link] = ACTIONS(884), + [anon_sym_repr] = ACTIONS(884), + [anon_sym_crate_type] = ACTIONS(884), + [anon_sym_no_main] = ACTIONS(884), + [anon_sym_export_name] = ACTIONS(884), + [anon_sym_link_section] = ACTIONS(884), + [anon_sym_no_mangle] = ACTIONS(884), + [anon_sym_used] = ACTIONS(884), + [anon_sym_crate_name] = ACTIONS(884), + [anon_sym_inline] = ACTIONS(884), + [anon_sym_cold] = ACTIONS(884), + [anon_sym_no_builtins] = ACTIONS(884), + [anon_sym_target_feature] = ACTIONS(884), + [anon_sym_track_caller] = ACTIONS(884), + [anon_sym_doc] = ACTIONS(884), + [anon_sym_no_std] = ACTIONS(884), + [anon_sym_no_implicit_prelude] = ACTIONS(884), + [anon_sym_recursion_limit] = ACTIONS(884), + [anon_sym_type_length_limit] = ACTIONS(884), + [anon_sym_panic_handler] = ACTIONS(884), + [anon_sym_global_allocator] = ACTIONS(884), + [anon_sym_windows_subsystem] = ACTIONS(884), + [anon_sym_feature] = ACTIONS(884), + [anon_sym_non_exhaustive] = ACTIONS(884), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(888), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [228] = { - [sym__attr] = STATE(2396), - [sym_custom_attr] = STATE(2396), - [sym_built_in_attr] = STATE(2396), - [sym__built_in_attr_path] = STATE(1867), - [sym_bracketed_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_scoped_identifier] = STATE(1626), - [sym_identifier] = ACTIONS(884), - [anon_sym_path] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_cfg] = ACTIONS(886), - [anon_sym_cfg_attr] = ACTIONS(886), - [anon_sym_test] = ACTIONS(886), - [anon_sym_ignore] = ACTIONS(886), - [anon_sym_should_panic] = ACTIONS(886), - [anon_sym_derive] = ACTIONS(886), - [anon_sym_automatically_derived] = ACTIONS(886), - [anon_sym_macro_export] = ACTIONS(886), - [anon_sym_macro_use] = ACTIONS(886), - [anon_sym_proc_macro] = ACTIONS(886), - [anon_sym_proc_macro_derive] = ACTIONS(886), - [anon_sym_proc_macro_attribute] = ACTIONS(886), - [anon_sym_allow] = ACTIONS(886), - [anon_sym_warn] = ACTIONS(886), - [anon_sym_deny] = ACTIONS(886), - [anon_sym_forbid] = ACTIONS(886), - [anon_sym_deprecated] = ACTIONS(886), - [anon_sym_must_use] = ACTIONS(886), - [anon_sym_link] = ACTIONS(886), - [anon_sym_link_name] = ACTIONS(886), - [anon_sym_no_link] = ACTIONS(886), - [anon_sym_repr] = ACTIONS(886), - [anon_sym_crate_type] = ACTIONS(886), - [anon_sym_no_main] = ACTIONS(886), - [anon_sym_export_name] = ACTIONS(886), - [anon_sym_link_section] = ACTIONS(886), - [anon_sym_no_mangle] = ACTIONS(886), - [anon_sym_used] = ACTIONS(886), - [anon_sym_crate_name] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(886), - [anon_sym_cold] = ACTIONS(886), - [anon_sym_no_builtins] = ACTIONS(886), - [anon_sym_target_feature] = ACTIONS(886), - [anon_sym_track_caller] = ACTIONS(886), - [anon_sym_doc] = ACTIONS(886), - [anon_sym_no_std] = ACTIONS(886), - [anon_sym_no_implicit_prelude] = ACTIONS(886), - [anon_sym_recursion_limit] = ACTIONS(886), - [anon_sym_type_length_limit] = ACTIONS(886), - [anon_sym_panic_handler] = ACTIONS(886), - [anon_sym_global_allocator] = ACTIONS(886), - [anon_sym_windows_subsystem] = ACTIONS(886), - [anon_sym_feature] = ACTIONS(886), - [anon_sym_non_exhaustive] = ACTIONS(886), + [sym__attr] = STATE(2394), + [sym_custom_attr] = STATE(2394), + [sym_built_in_attr] = STATE(2394), + [sym__built_in_attr_path] = STATE(1868), + [sym_bracketed_type] = STATE(2535), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_scoped_identifier] = STATE(1656), + [sym_identifier] = ACTIONS(882), + [anon_sym_path] = ACTIONS(884), + [anon_sym_u8] = ACTIONS(886), + [anon_sym_i8] = ACTIONS(886), + [anon_sym_u16] = ACTIONS(886), + [anon_sym_i16] = ACTIONS(886), + [anon_sym_u32] = ACTIONS(886), + [anon_sym_i32] = ACTIONS(886), + [anon_sym_u64] = ACTIONS(886), + [anon_sym_i64] = ACTIONS(886), + [anon_sym_u128] = ACTIONS(886), + [anon_sym_i128] = ACTIONS(886), + [anon_sym_isize] = ACTIONS(886), + [anon_sym_usize] = ACTIONS(886), + [anon_sym_f32] = ACTIONS(886), + [anon_sym_f64] = ACTIONS(886), + [anon_sym_bool] = ACTIONS(886), + [anon_sym_str] = ACTIONS(886), + [anon_sym_char] = ACTIONS(886), + [anon_sym_default] = ACTIONS(886), + [anon_sym_union] = ACTIONS(886), + [anon_sym_cfg] = ACTIONS(884), + [anon_sym_cfg_attr] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_ignore] = ACTIONS(884), + [anon_sym_should_panic] = ACTIONS(884), + [anon_sym_derive] = ACTIONS(884), + [anon_sym_automatically_derived] = ACTIONS(884), + [anon_sym_macro_export] = ACTIONS(884), + [anon_sym_macro_use] = ACTIONS(884), + [anon_sym_proc_macro] = ACTIONS(884), + [anon_sym_proc_macro_derive] = ACTIONS(884), + [anon_sym_proc_macro_attribute] = ACTIONS(884), + [anon_sym_allow] = ACTIONS(884), + [anon_sym_warn] = ACTIONS(884), + [anon_sym_deny] = ACTIONS(884), + [anon_sym_forbid] = ACTIONS(884), + [anon_sym_deprecated] = ACTIONS(884), + [anon_sym_must_use] = ACTIONS(884), + [anon_sym_link] = ACTIONS(884), + [anon_sym_link_name] = ACTIONS(884), + [anon_sym_no_link] = ACTIONS(884), + [anon_sym_repr] = ACTIONS(884), + [anon_sym_crate_type] = ACTIONS(884), + [anon_sym_no_main] = ACTIONS(884), + [anon_sym_export_name] = ACTIONS(884), + [anon_sym_link_section] = ACTIONS(884), + [anon_sym_no_mangle] = ACTIONS(884), + [anon_sym_used] = ACTIONS(884), + [anon_sym_crate_name] = ACTIONS(884), + [anon_sym_inline] = ACTIONS(884), + [anon_sym_cold] = ACTIONS(884), + [anon_sym_no_builtins] = ACTIONS(884), + [anon_sym_target_feature] = ACTIONS(884), + [anon_sym_track_caller] = ACTIONS(884), + [anon_sym_doc] = ACTIONS(884), + [anon_sym_no_std] = ACTIONS(884), + [anon_sym_no_implicit_prelude] = ACTIONS(884), + [anon_sym_recursion_limit] = ACTIONS(884), + [anon_sym_type_length_limit] = ACTIONS(884), + [anon_sym_panic_handler] = ACTIONS(884), + [anon_sym_global_allocator] = ACTIONS(884), + [anon_sym_windows_subsystem] = ACTIONS(884), + [anon_sym_feature] = ACTIONS(884), + [anon_sym_non_exhaustive] = ACTIONS(884), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(888), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [229] = { - [sym_identifier] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_QMARK] = ACTIONS(548), - [anon_sym_u8] = ACTIONS(550), - [anon_sym_i8] = ACTIONS(550), - [anon_sym_u16] = ACTIONS(550), - [anon_sym_i16] = ACTIONS(550), - [anon_sym_u32] = ACTIONS(550), - [anon_sym_i32] = ACTIONS(550), - [anon_sym_u64] = ACTIONS(550), - [anon_sym_i64] = ACTIONS(550), - [anon_sym_u128] = ACTIONS(550), - [anon_sym_i128] = ACTIONS(550), - [anon_sym_isize] = ACTIONS(550), - [anon_sym_usize] = ACTIONS(550), - [anon_sym_f32] = ACTIONS(550), - [anon_sym_f64] = ACTIONS(550), - [anon_sym_bool] = ACTIONS(550), - [anon_sym_str] = ACTIONS(550), - [anon_sym_char] = ACTIONS(550), - [anon_sym_as] = ACTIONS(550), - [anon_sym_const] = ACTIONS(550), - [anon_sym_default] = ACTIONS(550), - [anon_sym_union] = ACTIONS(550), - [anon_sym_POUND] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_COMMA] = ACTIONS(548), - [anon_sym_ref] = ACTIONS(550), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_COLON_COLON] = ACTIONS(548), - [anon_sym__] = ACTIONS(550), - [anon_sym_AMP] = ACTIONS(550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(548), - [sym_mutable_specifier] = ACTIONS(550), - [anon_sym_DOT_DOT] = ACTIONS(550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(548), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(548), - [anon_sym_PIPE_PIPE] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT_EQ] = ACTIONS(548), - [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(550), - [anon_sym_GT_GT] = ACTIONS(550), - [anon_sym_SLASH] = ACTIONS(550), - [anon_sym_PERCENT] = ACTIONS(550), - [anon_sym_PLUS_EQ] = ACTIONS(548), - [anon_sym_DASH_EQ] = ACTIONS(548), - [anon_sym_STAR_EQ] = ACTIONS(548), - [anon_sym_SLASH_EQ] = ACTIONS(548), - [anon_sym_PERCENT_EQ] = ACTIONS(548), - [anon_sym_AMP_EQ] = ACTIONS(548), - [anon_sym_PIPE_EQ] = ACTIONS(548), - [anon_sym_CARET_EQ] = ACTIONS(548), - [anon_sym_LT_LT_EQ] = ACTIONS(548), - [anon_sym_GT_GT_EQ] = ACTIONS(548), - [anon_sym_else] = ACTIONS(550), - [anon_sym_DOT] = ACTIONS(550), - [sym_integer_literal] = ACTIONS(548), - [aux_sym_string_literal_token1] = ACTIONS(548), - [sym_char_literal] = ACTIONS(548), - [anon_sym_true] = ACTIONS(550), - [anon_sym_false] = ACTIONS(550), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(550), - [sym_super] = ACTIONS(550), - [sym_crate] = ACTIONS(550), - [sym_metavariable] = ACTIONS(548), - [sym_raw_string_literal] = ACTIONS(548), - [sym_float_literal] = ACTIONS(548), + [sym_identifier] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_PLUS] = ACTIONS(538), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_QMARK] = ACTIONS(536), + [anon_sym_u8] = ACTIONS(538), + [anon_sym_i8] = ACTIONS(538), + [anon_sym_u16] = ACTIONS(538), + [anon_sym_i16] = ACTIONS(538), + [anon_sym_u32] = ACTIONS(538), + [anon_sym_i32] = ACTIONS(538), + [anon_sym_u64] = ACTIONS(538), + [anon_sym_i64] = ACTIONS(538), + [anon_sym_u128] = ACTIONS(538), + [anon_sym_i128] = ACTIONS(538), + [anon_sym_isize] = ACTIONS(538), + [anon_sym_usize] = ACTIONS(538), + [anon_sym_f32] = ACTIONS(538), + [anon_sym_f64] = ACTIONS(538), + [anon_sym_bool] = ACTIONS(538), + [anon_sym_str] = ACTIONS(538), + [anon_sym_char] = ACTIONS(538), + [anon_sym_as] = ACTIONS(538), + [anon_sym_const] = ACTIONS(538), + [anon_sym_default] = ACTIONS(538), + [anon_sym_union] = ACTIONS(538), + [anon_sym_POUND] = ACTIONS(536), + [anon_sym_EQ] = ACTIONS(538), + [anon_sym_COMMA] = ACTIONS(536), + [anon_sym_ref] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(538), + [anon_sym_GT] = ACTIONS(538), + [anon_sym_else] = ACTIONS(538), + [anon_sym_COLON_COLON] = ACTIONS(536), + [anon_sym__] = ACTIONS(538), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(536), + [sym_mutable_specifier] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(538), + [anon_sym_AMP_AMP] = ACTIONS(536), + [anon_sym_PIPE_PIPE] = ACTIONS(536), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_CARET] = ACTIONS(538), + [anon_sym_EQ_EQ] = ACTIONS(536), + [anon_sym_BANG_EQ] = ACTIONS(536), + [anon_sym_LT_EQ] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(536), + [anon_sym_LT_LT] = ACTIONS(538), + [anon_sym_GT_GT] = ACTIONS(538), + [anon_sym_SLASH] = ACTIONS(538), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_PLUS_EQ] = ACTIONS(536), + [anon_sym_DASH_EQ] = ACTIONS(536), + [anon_sym_STAR_EQ] = ACTIONS(536), + [anon_sym_SLASH_EQ] = ACTIONS(536), + [anon_sym_PERCENT_EQ] = ACTIONS(536), + [anon_sym_AMP_EQ] = ACTIONS(536), + [anon_sym_PIPE_EQ] = ACTIONS(536), + [anon_sym_CARET_EQ] = ACTIONS(536), + [anon_sym_LT_LT_EQ] = ACTIONS(536), + [anon_sym_GT_GT_EQ] = ACTIONS(536), + [anon_sym_DOT] = ACTIONS(538), + [sym_integer_literal] = ACTIONS(536), + [aux_sym_string_literal_token1] = ACTIONS(536), + [sym_char_literal] = ACTIONS(536), + [anon_sym_true] = ACTIONS(538), + [anon_sym_false] = ACTIONS(538), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(538), + [sym_super] = ACTIONS(538), + [sym_crate] = ACTIONS(538), + [sym_metavariable] = ACTIONS(536), + [sym_raw_string_literal] = ACTIONS(536), + [sym_float_literal] = ACTIONS(536), [sym_block_comment] = ACTIONS(3), }, [230] = { - [sym_identifier] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(542), - [anon_sym_u8] = ACTIONS(544), - [anon_sym_i8] = ACTIONS(544), - [anon_sym_u16] = ACTIONS(544), - [anon_sym_i16] = ACTIONS(544), - [anon_sym_u32] = ACTIONS(544), - [anon_sym_i32] = ACTIONS(544), - [anon_sym_u64] = ACTIONS(544), - [anon_sym_i64] = ACTIONS(544), - [anon_sym_u128] = ACTIONS(544), - [anon_sym_i128] = ACTIONS(544), - [anon_sym_isize] = ACTIONS(544), - [anon_sym_usize] = ACTIONS(544), - [anon_sym_f32] = ACTIONS(544), - [anon_sym_f64] = ACTIONS(544), - [anon_sym_bool] = ACTIONS(544), - [anon_sym_str] = ACTIONS(544), - [anon_sym_char] = ACTIONS(544), - [anon_sym_as] = ACTIONS(544), - [anon_sym_const] = ACTIONS(544), - [anon_sym_default] = ACTIONS(544), - [anon_sym_union] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(542), - [anon_sym_ref] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_COLON_COLON] = ACTIONS(542), - [anon_sym__] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(542), - [sym_mutable_specifier] = ACTIONS(544), - [anon_sym_DOT_DOT] = ACTIONS(544), - [anon_sym_DOT_DOT_EQ] = ACTIONS(542), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_PLUS_EQ] = ACTIONS(542), - [anon_sym_DASH_EQ] = ACTIONS(542), - [anon_sym_STAR_EQ] = ACTIONS(542), - [anon_sym_SLASH_EQ] = ACTIONS(542), - [anon_sym_PERCENT_EQ] = ACTIONS(542), - [anon_sym_AMP_EQ] = ACTIONS(542), - [anon_sym_PIPE_EQ] = ACTIONS(542), - [anon_sym_CARET_EQ] = ACTIONS(542), - [anon_sym_LT_LT_EQ] = ACTIONS(542), - [anon_sym_GT_GT_EQ] = ACTIONS(542), - [anon_sym_else] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [sym_integer_literal] = ACTIONS(542), - [aux_sym_string_literal_token1] = ACTIONS(542), - [sym_char_literal] = ACTIONS(542), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(544), - [sym_super] = ACTIONS(544), - [sym_crate] = ACTIONS(544), - [sym_metavariable] = ACTIONS(542), - [sym_raw_string_literal] = ACTIONS(542), - [sym_float_literal] = ACTIONS(542), + [sym_identifier] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_u8] = ACTIONS(546), + [anon_sym_i8] = ACTIONS(546), + [anon_sym_u16] = ACTIONS(546), + [anon_sym_i16] = ACTIONS(546), + [anon_sym_u32] = ACTIONS(546), + [anon_sym_i32] = ACTIONS(546), + [anon_sym_u64] = ACTIONS(546), + [anon_sym_i64] = ACTIONS(546), + [anon_sym_u128] = ACTIONS(546), + [anon_sym_i128] = ACTIONS(546), + [anon_sym_isize] = ACTIONS(546), + [anon_sym_usize] = ACTIONS(546), + [anon_sym_f32] = ACTIONS(546), + [anon_sym_f64] = ACTIONS(546), + [anon_sym_bool] = ACTIONS(546), + [anon_sym_str] = ACTIONS(546), + [anon_sym_char] = ACTIONS(546), + [anon_sym_as] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [anon_sym_default] = ACTIONS(546), + [anon_sym_union] = ACTIONS(546), + [anon_sym_POUND] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_COMMA] = ACTIONS(544), + [anon_sym_ref] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(546), + [anon_sym_else] = ACTIONS(546), + [anon_sym_COLON_COLON] = ACTIONS(544), + [anon_sym__] = ACTIONS(546), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), + [sym_mutable_specifier] = ACTIONS(546), + [anon_sym_DOT_DOT] = ACTIONS(546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(544), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(546), + [anon_sym_EQ_EQ] = ACTIONS(544), + [anon_sym_BANG_EQ] = ACTIONS(544), + [anon_sym_LT_EQ] = ACTIONS(544), + [anon_sym_GT_EQ] = ACTIONS(544), + [anon_sym_LT_LT] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(546), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(546), + [anon_sym_PLUS_EQ] = ACTIONS(544), + [anon_sym_DASH_EQ] = ACTIONS(544), + [anon_sym_STAR_EQ] = ACTIONS(544), + [anon_sym_SLASH_EQ] = ACTIONS(544), + [anon_sym_PERCENT_EQ] = ACTIONS(544), + [anon_sym_AMP_EQ] = ACTIONS(544), + [anon_sym_PIPE_EQ] = ACTIONS(544), + [anon_sym_CARET_EQ] = ACTIONS(544), + [anon_sym_LT_LT_EQ] = ACTIONS(544), + [anon_sym_GT_GT_EQ] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [sym_integer_literal] = ACTIONS(544), + [aux_sym_string_literal_token1] = ACTIONS(544), + [sym_char_literal] = ACTIONS(544), + [anon_sym_true] = ACTIONS(546), + [anon_sym_false] = ACTIONS(546), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(546), + [sym_super] = ACTIONS(546), + [sym_crate] = ACTIONS(546), + [sym_metavariable] = ACTIONS(544), + [sym_raw_string_literal] = ACTIONS(544), + [sym_float_literal] = ACTIONS(544), [sym_block_comment] = ACTIONS(3), }, [231] = { - [sym_identifier] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_as] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_ref] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym__] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [sym_mutable_specifier] = ACTIONS(556), - [anon_sym_DOT_DOT] = ACTIONS(556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_else] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), + [sym_identifier] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(550), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_POUND] = ACTIONS(550), + [anon_sym_EQ] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(550), + [anon_sym_ref] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_else] = ACTIONS(552), + [anon_sym_COLON_COLON] = ACTIONS(550), + [anon_sym__] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(550), + [sym_mutable_specifier] = ACTIONS(552), + [anon_sym_DOT_DOT] = ACTIONS(552), + [anon_sym_DOT_DOT_EQ] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_AMP_AMP] = ACTIONS(550), + [anon_sym_PIPE_PIPE] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(552), + [anon_sym_CARET] = ACTIONS(552), + [anon_sym_EQ_EQ] = ACTIONS(550), + [anon_sym_BANG_EQ] = ACTIONS(550), + [anon_sym_LT_EQ] = ACTIONS(550), + [anon_sym_GT_EQ] = ACTIONS(550), + [anon_sym_LT_LT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(552), + [anon_sym_SLASH] = ACTIONS(552), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_PLUS_EQ] = ACTIONS(550), + [anon_sym_DASH_EQ] = ACTIONS(550), + [anon_sym_STAR_EQ] = ACTIONS(550), + [anon_sym_SLASH_EQ] = ACTIONS(550), + [anon_sym_PERCENT_EQ] = ACTIONS(550), + [anon_sym_AMP_EQ] = ACTIONS(550), + [anon_sym_PIPE_EQ] = ACTIONS(550), + [anon_sym_CARET_EQ] = ACTIONS(550), + [anon_sym_LT_LT_EQ] = ACTIONS(550), + [anon_sym_GT_GT_EQ] = ACTIONS(550), + [anon_sym_DOT] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(550), + [aux_sym_string_literal_token1] = ACTIONS(550), + [sym_char_literal] = ACTIONS(550), + [anon_sym_true] = ACTIONS(552), + [anon_sym_false] = ACTIONS(552), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(550), + [sym_raw_string_literal] = ACTIONS(550), + [sym_float_literal] = ACTIONS(550), [sym_block_comment] = ACTIONS(3), }, [232] = { - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(648), - [anon_sym_u8] = ACTIONS(650), - [anon_sym_i8] = ACTIONS(650), - [anon_sym_u16] = ACTIONS(650), - [anon_sym_i16] = ACTIONS(650), - [anon_sym_u32] = ACTIONS(650), - [anon_sym_i32] = ACTIONS(650), - [anon_sym_u64] = ACTIONS(650), - [anon_sym_i64] = ACTIONS(650), - [anon_sym_u128] = ACTIONS(650), - [anon_sym_i128] = ACTIONS(650), - [anon_sym_isize] = ACTIONS(650), - [anon_sym_usize] = ACTIONS(650), - [anon_sym_f32] = ACTIONS(650), - [anon_sym_f64] = ACTIONS(650), - [anon_sym_bool] = ACTIONS(650), - [anon_sym_str] = ACTIONS(650), - [anon_sym_char] = ACTIONS(650), - [anon_sym_as] = ACTIONS(650), - [anon_sym_const] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), - [anon_sym_union] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(648), - [anon_sym_ref] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_COLON_COLON] = ACTIONS(648), - [anon_sym__] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(648), - [sym_mutable_specifier] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_DOT] = ACTIONS(650), - [sym_integer_literal] = ACTIONS(648), - [aux_sym_string_literal_token1] = ACTIONS(648), - [sym_char_literal] = ACTIONS(648), - [anon_sym_true] = ACTIONS(650), - [anon_sym_false] = ACTIONS(650), + [sym_identifier] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u128] = ACTIONS(572), + [anon_sym_i128] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_str] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_as] = ACTIONS(572), + [anon_sym_const] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_union] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_ref] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym__] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(572), + [sym_integer_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(570), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(650), - [sym_super] = ACTIONS(650), - [sym_crate] = ACTIONS(650), - [sym_metavariable] = ACTIONS(648), - [sym_raw_string_literal] = ACTIONS(648), - [sym_float_literal] = ACTIONS(648), + [sym_self] = ACTIONS(572), + [sym_super] = ACTIONS(572), + [sym_crate] = ACTIONS(572), + [sym_metavariable] = ACTIONS(570), + [sym_raw_string_literal] = ACTIONS(570), + [sym_float_literal] = ACTIONS(570), [sym_block_comment] = ACTIONS(3), }, [233] = { [sym_identifier] = ACTIONS(896), [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_QMARK] = ACTIONS(568), [anon_sym_u8] = ACTIONS(896), [anon_sym_i8] = ACTIONS(896), [anon_sym_u16] = ACTIONS(896), @@ -41500,47 +44230,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(896), [anon_sym_str] = ACTIONS(896), [anon_sym_char] = ACTIONS(896), - [anon_sym_as] = ACTIONS(568), + [anon_sym_as] = ACTIONS(566), [anon_sym_const] = ACTIONS(896), [anon_sym_default] = ACTIONS(896), [anon_sym_union] = ACTIONS(896), [anon_sym_POUND] = ACTIONS(898), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(568), [anon_sym_ref] = ACTIONS(896), [anon_sym_LT] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(566), [anon_sym_COLON_COLON] = ACTIONS(898), [anon_sym__] = ACTIONS(896), [anon_sym_AMP] = ACTIONS(896), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(568), [sym_mutable_specifier] = ACTIONS(896), [anon_sym_DOT_DOT] = ACTIONS(896), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DOT_DOT_EQ] = ACTIONS(568), [anon_sym_DASH] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_DOT] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(566), [sym_integer_literal] = ACTIONS(898), [aux_sym_string_literal_token1] = ACTIONS(898), [sym_char_literal] = ACTIONS(898), @@ -41556,273 +44286,673 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [234] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1897), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2225), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [sym_block] = STATE(2225), - [sym__literal] = STATE(2225), - [sym_string_literal] = STATE(2318), - [sym_boolean_literal] = STATE(2318), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(914), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(920), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(920), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_raw_string_literal] = ACTIONS(920), - [sym_float_literal] = ACTIONS(920), + [sym_identifier] = ACTIONS(618), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(618), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(618), + [anon_sym_i8] = ACTIONS(618), + [anon_sym_u16] = ACTIONS(618), + [anon_sym_i16] = ACTIONS(618), + [anon_sym_u32] = ACTIONS(618), + [anon_sym_i32] = ACTIONS(618), + [anon_sym_u64] = ACTIONS(618), + [anon_sym_i64] = ACTIONS(618), + [anon_sym_u128] = ACTIONS(618), + [anon_sym_i128] = ACTIONS(618), + [anon_sym_isize] = ACTIONS(618), + [anon_sym_usize] = ACTIONS(618), + [anon_sym_f32] = ACTIONS(618), + [anon_sym_f64] = ACTIONS(618), + [anon_sym_bool] = ACTIONS(618), + [anon_sym_str] = ACTIONS(618), + [anon_sym_char] = ACTIONS(618), + [anon_sym_as] = ACTIONS(618), + [anon_sym_const] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_union] = ACTIONS(618), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(618), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_ref] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_GT] = ACTIONS(618), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym__] = ACTIONS(618), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [sym_mutable_specifier] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_CARET] = ACTIONS(618), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_GT_GT] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(618), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [sym_integer_literal] = ACTIONS(616), + [aux_sym_string_literal_token1] = ACTIONS(616), + [sym_char_literal] = ACTIONS(616), + [anon_sym_true] = ACTIONS(618), + [anon_sym_false] = ACTIONS(618), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(618), + [sym_super] = ACTIONS(618), + [sym_crate] = ACTIONS(618), + [sym_metavariable] = ACTIONS(616), + [sym_raw_string_literal] = ACTIONS(616), + [sym_float_literal] = ACTIONS(616), [sym_block_comment] = ACTIONS(3), }, [235] = { - [sym_identifier] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_u8] = ACTIONS(646), - [anon_sym_i8] = ACTIONS(646), - [anon_sym_u16] = ACTIONS(646), - [anon_sym_i16] = ACTIONS(646), - [anon_sym_u32] = ACTIONS(646), - [anon_sym_i32] = ACTIONS(646), - [anon_sym_u64] = ACTIONS(646), - [anon_sym_i64] = ACTIONS(646), - [anon_sym_u128] = ACTIONS(646), - [anon_sym_i128] = ACTIONS(646), - [anon_sym_isize] = ACTIONS(646), - [anon_sym_usize] = ACTIONS(646), - [anon_sym_f32] = ACTIONS(646), - [anon_sym_f64] = ACTIONS(646), - [anon_sym_bool] = ACTIONS(646), - [anon_sym_str] = ACTIONS(646), - [anon_sym_char] = ACTIONS(646), - [anon_sym_as] = ACTIONS(646), - [anon_sym_const] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_union] = ACTIONS(646), - [anon_sym_POUND] = ACTIONS(644), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_ref] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(646), - [anon_sym_GT] = ACTIONS(646), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym__] = ACTIONS(646), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [sym_mutable_specifier] = ACTIONS(646), - [anon_sym_DOT_DOT] = ACTIONS(646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(646), - [anon_sym_CARET] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_LT_LT] = ACTIONS(646), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_AMP_EQ] = ACTIONS(644), - [anon_sym_PIPE_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_LT_LT_EQ] = ACTIONS(644), - [anon_sym_GT_GT_EQ] = ACTIONS(644), - [anon_sym_DOT] = ACTIONS(646), - [sym_integer_literal] = ACTIONS(644), - [aux_sym_string_literal_token1] = ACTIONS(644), - [sym_char_literal] = ACTIONS(644), - [anon_sym_true] = ACTIONS(646), - [anon_sym_false] = ACTIONS(646), + [sym_identifier] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_u8] = ACTIONS(622), + [anon_sym_i8] = ACTIONS(622), + [anon_sym_u16] = ACTIONS(622), + [anon_sym_i16] = ACTIONS(622), + [anon_sym_u32] = ACTIONS(622), + [anon_sym_i32] = ACTIONS(622), + [anon_sym_u64] = ACTIONS(622), + [anon_sym_i64] = ACTIONS(622), + [anon_sym_u128] = ACTIONS(622), + [anon_sym_i128] = ACTIONS(622), + [anon_sym_isize] = ACTIONS(622), + [anon_sym_usize] = ACTIONS(622), + [anon_sym_f32] = ACTIONS(622), + [anon_sym_f64] = ACTIONS(622), + [anon_sym_bool] = ACTIONS(622), + [anon_sym_str] = ACTIONS(622), + [anon_sym_char] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_default] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(620), + [anon_sym_ref] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_COLON_COLON] = ACTIONS(620), + [anon_sym__] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(620), + [sym_mutable_specifier] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT_EQ] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(620), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_BANG_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_PLUS_EQ] = ACTIONS(620), + [anon_sym_DASH_EQ] = ACTIONS(620), + [anon_sym_STAR_EQ] = ACTIONS(620), + [anon_sym_SLASH_EQ] = ACTIONS(620), + [anon_sym_PERCENT_EQ] = ACTIONS(620), + [anon_sym_AMP_EQ] = ACTIONS(620), + [anon_sym_PIPE_EQ] = ACTIONS(620), + [anon_sym_CARET_EQ] = ACTIONS(620), + [anon_sym_LT_LT_EQ] = ACTIONS(620), + [anon_sym_GT_GT_EQ] = ACTIONS(620), + [anon_sym_DOT] = ACTIONS(622), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(620), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(646), - [sym_super] = ACTIONS(646), - [sym_crate] = ACTIONS(646), - [sym_metavariable] = ACTIONS(644), - [sym_raw_string_literal] = ACTIONS(644), - [sym_float_literal] = ACTIONS(644), + [sym_self] = ACTIONS(622), + [sym_super] = ACTIONS(622), + [sym_crate] = ACTIONS(622), + [sym_metavariable] = ACTIONS(620), + [sym_raw_string_literal] = ACTIONS(620), + [sym_float_literal] = ACTIONS(620), [sym_block_comment] = ACTIONS(3), }, [236] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_RBRACE] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_as] = ACTIONS(666), - [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_union] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_ref] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_COLON_COLON] = ACTIONS(664), - [anon_sym__] = ACTIONS(666), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(664), - [sym_mutable_specifier] = ACTIONS(666), - [anon_sym_DOT_DOT] = ACTIONS(666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(666), - [sym_integer_literal] = ACTIONS(664), - [aux_sym_string_literal_token1] = ACTIONS(664), - [sym_char_literal] = ACTIONS(664), - [anon_sym_true] = ACTIONS(666), - [anon_sym_false] = ACTIONS(666), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(666), - [sym_super] = ACTIONS(666), - [sym_crate] = ACTIONS(666), - [sym_metavariable] = ACTIONS(664), - [sym_raw_string_literal] = ACTIONS(664), - [sym_float_literal] = ACTIONS(664), + [sym_identifier] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_u8] = ACTIONS(634), + [anon_sym_i8] = ACTIONS(634), + [anon_sym_u16] = ACTIONS(634), + [anon_sym_i16] = ACTIONS(634), + [anon_sym_u32] = ACTIONS(634), + [anon_sym_i32] = ACTIONS(634), + [anon_sym_u64] = ACTIONS(634), + [anon_sym_i64] = ACTIONS(634), + [anon_sym_u128] = ACTIONS(634), + [anon_sym_i128] = ACTIONS(634), + [anon_sym_isize] = ACTIONS(634), + [anon_sym_usize] = ACTIONS(634), + [anon_sym_f32] = ACTIONS(634), + [anon_sym_f64] = ACTIONS(634), + [anon_sym_bool] = ACTIONS(634), + [anon_sym_str] = ACTIONS(634), + [anon_sym_char] = ACTIONS(634), + [anon_sym_as] = ACTIONS(634), + [anon_sym_const] = ACTIONS(634), + [anon_sym_default] = ACTIONS(634), + [anon_sym_union] = ACTIONS(634), + [anon_sym_POUND] = ACTIONS(632), + [anon_sym_EQ] = ACTIONS(634), + [anon_sym_COMMA] = ACTIONS(632), + [anon_sym_ref] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(634), + [anon_sym_COLON_COLON] = ACTIONS(632), + [anon_sym__] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(632), + [sym_mutable_specifier] = ACTIONS(634), + [anon_sym_DOT_DOT] = ACTIONS(634), + [anon_sym_DOT_DOT_EQ] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_AMP_AMP] = ACTIONS(632), + [anon_sym_PIPE_PIPE] = ACTIONS(632), + [anon_sym_PIPE] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_EQ_EQ] = ACTIONS(632), + [anon_sym_BANG_EQ] = ACTIONS(632), + [anon_sym_LT_EQ] = ACTIONS(632), + [anon_sym_GT_EQ] = ACTIONS(632), + [anon_sym_LT_LT] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(634), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(634), + [anon_sym_PLUS_EQ] = ACTIONS(632), + [anon_sym_DASH_EQ] = ACTIONS(632), + [anon_sym_STAR_EQ] = ACTIONS(632), + [anon_sym_SLASH_EQ] = ACTIONS(632), + [anon_sym_PERCENT_EQ] = ACTIONS(632), + [anon_sym_AMP_EQ] = ACTIONS(632), + [anon_sym_PIPE_EQ] = ACTIONS(632), + [anon_sym_CARET_EQ] = ACTIONS(632), + [anon_sym_LT_LT_EQ] = ACTIONS(632), + [anon_sym_GT_GT_EQ] = ACTIONS(632), + [anon_sym_DOT] = ACTIONS(634), + [sym_integer_literal] = ACTIONS(632), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(634), + [sym_super] = ACTIONS(634), + [sym_crate] = ACTIONS(634), + [sym_metavariable] = ACTIONS(632), + [sym_raw_string_literal] = ACTIONS(632), + [sym_float_literal] = ACTIONS(632), [sym_block_comment] = ACTIONS(3), }, [237] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1897), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2225), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [sym_block] = STATE(2225), - [sym__literal] = STATE(2225), - [sym_string_literal] = STATE(2318), - [sym_boolean_literal] = STATE(2318), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_identifier] = ACTIONS(674), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_PLUS] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(674), + [anon_sym_i8] = ACTIONS(674), + [anon_sym_u16] = ACTIONS(674), + [anon_sym_i16] = ACTIONS(674), + [anon_sym_u32] = ACTIONS(674), + [anon_sym_i32] = ACTIONS(674), + [anon_sym_u64] = ACTIONS(674), + [anon_sym_i64] = ACTIONS(674), + [anon_sym_u128] = ACTIONS(674), + [anon_sym_i128] = ACTIONS(674), + [anon_sym_isize] = ACTIONS(674), + [anon_sym_usize] = ACTIONS(674), + [anon_sym_f32] = ACTIONS(674), + [anon_sym_f64] = ACTIONS(674), + [anon_sym_bool] = ACTIONS(674), + [anon_sym_str] = ACTIONS(674), + [anon_sym_char] = ACTIONS(674), + [anon_sym_as] = ACTIONS(674), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_union] = ACTIONS(674), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_ref] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [sym_mutable_specifier] = ACTIONS(674), + [anon_sym_DOT_DOT] = ACTIONS(674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_CARET] = ACTIONS(674), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(674), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(674), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_DOT] = ACTIONS(674), + [sym_integer_literal] = ACTIONS(672), + [aux_sym_string_literal_token1] = ACTIONS(672), + [sym_char_literal] = ACTIONS(672), + [anon_sym_true] = ACTIONS(674), + [anon_sym_false] = ACTIONS(674), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(672), + [sym_raw_string_literal] = ACTIONS(672), + [sym_float_literal] = ACTIONS(672), + [sym_block_comment] = ACTIONS(3), + }, + [238] = { + [sym_identifier] = ACTIONS(678), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(678), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_ref] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym__] = ACTIONS(678), + [anon_sym_AMP] = ACTIONS(678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [sym_mutable_specifier] = ACTIONS(678), + [anon_sym_DOT_DOT] = ACTIONS(678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(678), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_PERCENT] = ACTIONS(678), + [anon_sym_PLUS_EQ] = ACTIONS(676), + [anon_sym_DASH_EQ] = ACTIONS(676), + [anon_sym_STAR_EQ] = ACTIONS(676), + [anon_sym_SLASH_EQ] = ACTIONS(676), + [anon_sym_PERCENT_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_CARET_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(676), + [aux_sym_string_literal_token1] = ACTIONS(676), + [sym_char_literal] = ACTIONS(676), + [anon_sym_true] = ACTIONS(678), + [anon_sym_false] = ACTIONS(678), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym_metavariable] = ACTIONS(676), + [sym_raw_string_literal] = ACTIONS(676), + [sym_float_literal] = ACTIONS(676), + [sym_block_comment] = ACTIONS(3), + }, + [239] = { + [sym_identifier] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(638), + [anon_sym_QMARK] = ACTIONS(636), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_POUND] = ACTIONS(636), + [anon_sym_EQ] = ACTIONS(638), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_ref] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_COLON_COLON] = ACTIONS(636), + [anon_sym__] = ACTIONS(638), + [anon_sym_AMP] = ACTIONS(638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(636), + [sym_mutable_specifier] = ACTIONS(638), + [anon_sym_DOT_DOT] = ACTIONS(638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(638), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), + [anon_sym_PIPE] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_EQ_EQ] = ACTIONS(636), + [anon_sym_BANG_EQ] = ACTIONS(636), + [anon_sym_LT_EQ] = ACTIONS(636), + [anon_sym_GT_EQ] = ACTIONS(636), + [anon_sym_LT_LT] = ACTIONS(638), + [anon_sym_GT_GT] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(638), + [anon_sym_PERCENT] = ACTIONS(638), + [anon_sym_PLUS_EQ] = ACTIONS(636), + [anon_sym_DASH_EQ] = ACTIONS(636), + [anon_sym_STAR_EQ] = ACTIONS(636), + [anon_sym_SLASH_EQ] = ACTIONS(636), + [anon_sym_PERCENT_EQ] = ACTIONS(636), + [anon_sym_AMP_EQ] = ACTIONS(636), + [anon_sym_PIPE_EQ] = ACTIONS(636), + [anon_sym_CARET_EQ] = ACTIONS(636), + [anon_sym_LT_LT_EQ] = ACTIONS(636), + [anon_sym_GT_GT_EQ] = ACTIONS(636), + [anon_sym_DOT] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(636), + [aux_sym_string_literal_token1] = ACTIONS(636), + [sym_char_literal] = ACTIONS(636), + [anon_sym_true] = ACTIONS(638), + [anon_sym_false] = ACTIONS(638), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(636), + [sym_raw_string_literal] = ACTIONS(636), + [sym_float_literal] = ACTIONS(636), + [sym_block_comment] = ACTIONS(3), + }, + [240] = { + [sym_identifier] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(640), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(642), + [anon_sym_i8] = ACTIONS(642), + [anon_sym_u16] = ACTIONS(642), + [anon_sym_i16] = ACTIONS(642), + [anon_sym_u32] = ACTIONS(642), + [anon_sym_i32] = ACTIONS(642), + [anon_sym_u64] = ACTIONS(642), + [anon_sym_i64] = ACTIONS(642), + [anon_sym_u128] = ACTIONS(642), + [anon_sym_i128] = ACTIONS(642), + [anon_sym_isize] = ACTIONS(642), + [anon_sym_usize] = ACTIONS(642), + [anon_sym_f32] = ACTIONS(642), + [anon_sym_f64] = ACTIONS(642), + [anon_sym_bool] = ACTIONS(642), + [anon_sym_str] = ACTIONS(642), + [anon_sym_char] = ACTIONS(642), + [anon_sym_as] = ACTIONS(642), + [anon_sym_const] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_union] = ACTIONS(642), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_ref] = ACTIONS(642), + [anon_sym_LT] = ACTIONS(642), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym__] = ACTIONS(642), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [sym_mutable_specifier] = ACTIONS(642), + [anon_sym_DOT_DOT] = ACTIONS(642), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_DOT] = ACTIONS(642), + [sym_integer_literal] = ACTIONS(640), + [aux_sym_string_literal_token1] = ACTIONS(640), + [sym_char_literal] = ACTIONS(640), + [anon_sym_true] = ACTIONS(642), + [anon_sym_false] = ACTIONS(642), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(642), + [sym_super] = ACTIONS(642), + [sym_crate] = ACTIONS(642), + [sym_metavariable] = ACTIONS(640), + [sym_raw_string_literal] = ACTIONS(640), + [sym_float_literal] = ACTIONS(640), + [sym_block_comment] = ACTIONS(3), + }, + [241] = { + [sym_identifier] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_u8] = ACTIONS(576), + [anon_sym_i8] = ACTIONS(576), + [anon_sym_u16] = ACTIONS(576), + [anon_sym_i16] = ACTIONS(576), + [anon_sym_u32] = ACTIONS(576), + [anon_sym_i32] = ACTIONS(576), + [anon_sym_u64] = ACTIONS(576), + [anon_sym_i64] = ACTIONS(576), + [anon_sym_u128] = ACTIONS(576), + [anon_sym_i128] = ACTIONS(576), + [anon_sym_isize] = ACTIONS(576), + [anon_sym_usize] = ACTIONS(576), + [anon_sym_f32] = ACTIONS(576), + [anon_sym_f64] = ACTIONS(576), + [anon_sym_bool] = ACTIONS(576), + [anon_sym_str] = ACTIONS(576), + [anon_sym_char] = ACTIONS(576), + [anon_sym_as] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_union] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(574), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(574), + [anon_sym_ref] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(574), + [anon_sym__] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(576), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), + [anon_sym_DOT] = ACTIONS(576), + [sym_integer_literal] = ACTIONS(574), + [aux_sym_string_literal_token1] = ACTIONS(574), + [sym_char_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_crate] = ACTIONS(576), + [sym_metavariable] = ACTIONS(574), + [sym_raw_string_literal] = ACTIONS(574), + [sym_float_literal] = ACTIONS(574), + [sym_block_comment] = ACTIONS(3), + }, + [242] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2016), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2013), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_type_binding] = STATE(2367), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [sym_block] = STATE(2367), + [sym__literal] = STATE(2367), + [sym_string_literal] = STATE(2253), + [sym_boolean_literal] = STATE(2253), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(900), [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_LBRACE] = ACTIONS(904), @@ -41857,7 +44987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(914), [anon_sym_COLON_COLON] = ACTIONS(916), [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), @@ -41875,327 +45005,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [238] = { - [sym_identifier] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(596), - [anon_sym_QMARK] = ACTIONS(594), - [anon_sym_u8] = ACTIONS(596), - [anon_sym_i8] = ACTIONS(596), - [anon_sym_u16] = ACTIONS(596), - [anon_sym_i16] = ACTIONS(596), - [anon_sym_u32] = ACTIONS(596), - [anon_sym_i32] = ACTIONS(596), - [anon_sym_u64] = ACTIONS(596), - [anon_sym_i64] = ACTIONS(596), - [anon_sym_u128] = ACTIONS(596), - [anon_sym_i128] = ACTIONS(596), - [anon_sym_isize] = ACTIONS(596), - [anon_sym_usize] = ACTIONS(596), - [anon_sym_f32] = ACTIONS(596), - [anon_sym_f64] = ACTIONS(596), - [anon_sym_bool] = ACTIONS(596), - [anon_sym_str] = ACTIONS(596), - [anon_sym_char] = ACTIONS(596), - [anon_sym_as] = ACTIONS(596), - [anon_sym_const] = ACTIONS(596), - [anon_sym_default] = ACTIONS(596), - [anon_sym_union] = ACTIONS(596), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_EQ] = ACTIONS(596), - [anon_sym_COMMA] = ACTIONS(594), - [anon_sym_ref] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(596), - [anon_sym_COLON_COLON] = ACTIONS(594), - [anon_sym__] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_mutable_specifier] = ACTIONS(596), - [anon_sym_DOT_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(594), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(594), - [anon_sym_PIPE_PIPE] = ACTIONS(594), - [anon_sym_PIPE] = ACTIONS(596), - [anon_sym_CARET] = ACTIONS(596), - [anon_sym_EQ_EQ] = ACTIONS(594), - [anon_sym_BANG_EQ] = ACTIONS(594), - [anon_sym_LT_EQ] = ACTIONS(594), - [anon_sym_GT_EQ] = ACTIONS(594), - [anon_sym_LT_LT] = ACTIONS(596), - [anon_sym_GT_GT] = ACTIONS(596), - [anon_sym_SLASH] = ACTIONS(596), - [anon_sym_PERCENT] = ACTIONS(596), - [anon_sym_PLUS_EQ] = ACTIONS(594), - [anon_sym_DASH_EQ] = ACTIONS(594), - [anon_sym_STAR_EQ] = ACTIONS(594), - [anon_sym_SLASH_EQ] = ACTIONS(594), - [anon_sym_PERCENT_EQ] = ACTIONS(594), - [anon_sym_AMP_EQ] = ACTIONS(594), - [anon_sym_PIPE_EQ] = ACTIONS(594), - [anon_sym_CARET_EQ] = ACTIONS(594), - [anon_sym_LT_LT_EQ] = ACTIONS(594), - [anon_sym_GT_GT_EQ] = ACTIONS(594), - [anon_sym_DOT] = ACTIONS(596), - [sym_integer_literal] = ACTIONS(594), - [aux_sym_string_literal_token1] = ACTIONS(594), - [sym_char_literal] = ACTIONS(594), - [anon_sym_true] = ACTIONS(596), - [anon_sym_false] = ACTIONS(596), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(596), - [sym_super] = ACTIONS(596), - [sym_crate] = ACTIONS(596), - [sym_metavariable] = ACTIONS(594), - [sym_raw_string_literal] = ACTIONS(594), - [sym_float_literal] = ACTIONS(594), - [sym_block_comment] = ACTIONS(3), - }, - [239] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1897), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2225), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [sym_block] = STATE(2225), - [sym__literal] = STATE(2225), - [sym_string_literal] = STATE(2318), - [sym_boolean_literal] = STATE(2318), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(920), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(920), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_raw_string_literal] = ACTIONS(920), - [sym_float_literal] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [240] = { - [sym_identifier] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_RBRACE] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(590), - [anon_sym_u8] = ACTIONS(592), - [anon_sym_i8] = ACTIONS(592), - [anon_sym_u16] = ACTIONS(592), - [anon_sym_i16] = ACTIONS(592), - [anon_sym_u32] = ACTIONS(592), - [anon_sym_i32] = ACTIONS(592), - [anon_sym_u64] = ACTIONS(592), - [anon_sym_i64] = ACTIONS(592), - [anon_sym_u128] = ACTIONS(592), - [anon_sym_i128] = ACTIONS(592), - [anon_sym_isize] = ACTIONS(592), - [anon_sym_usize] = ACTIONS(592), - [anon_sym_f32] = ACTIONS(592), - [anon_sym_f64] = ACTIONS(592), - [anon_sym_bool] = ACTIONS(592), - [anon_sym_str] = ACTIONS(592), - [anon_sym_char] = ACTIONS(592), - [anon_sym_as] = ACTIONS(592), - [anon_sym_const] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_union] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(590), - [anon_sym_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(590), - [anon_sym_ref] = ACTIONS(592), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(590), - [anon_sym__] = ACTIONS(592), - [anon_sym_AMP] = ACTIONS(592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(592), - [anon_sym_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_AMP_AMP] = ACTIONS(590), - [anon_sym_PIPE_PIPE] = ACTIONS(590), - [anon_sym_PIPE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_EQ_EQ] = ACTIONS(590), - [anon_sym_BANG_EQ] = ACTIONS(590), - [anon_sym_LT_EQ] = ACTIONS(590), - [anon_sym_GT_EQ] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_PERCENT] = ACTIONS(592), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_STAR_EQ] = ACTIONS(590), - [anon_sym_SLASH_EQ] = ACTIONS(590), - [anon_sym_PERCENT_EQ] = ACTIONS(590), - [anon_sym_AMP_EQ] = ACTIONS(590), - [anon_sym_PIPE_EQ] = ACTIONS(590), - [anon_sym_CARET_EQ] = ACTIONS(590), - [anon_sym_LT_LT_EQ] = ACTIONS(590), - [anon_sym_GT_GT_EQ] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(592), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(590), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(592), - [sym_super] = ACTIONS(592), - [sym_crate] = ACTIONS(592), - [sym_metavariable] = ACTIONS(590), - [sym_raw_string_literal] = ACTIONS(590), - [sym_float_literal] = ACTIONS(590), - [sym_block_comment] = ACTIONS(3), - }, - [241] = { - [sym_identifier] = ACTIONS(930), - [anon_sym_LPAREN] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(930), - [anon_sym_i8] = ACTIONS(930), - [anon_sym_u16] = ACTIONS(930), - [anon_sym_i16] = ACTIONS(930), - [anon_sym_u32] = ACTIONS(930), - [anon_sym_i32] = ACTIONS(930), - [anon_sym_u64] = ACTIONS(930), - [anon_sym_i64] = ACTIONS(930), - [anon_sym_u128] = ACTIONS(930), - [anon_sym_i128] = ACTIONS(930), - [anon_sym_isize] = ACTIONS(930), - [anon_sym_usize] = ACTIONS(930), - [anon_sym_f32] = ACTIONS(930), - [anon_sym_f64] = ACTIONS(930), - [anon_sym_bool] = ACTIONS(930), - [anon_sym_str] = ACTIONS(930), - [anon_sym_char] = ACTIONS(930), - [anon_sym_as] = ACTIONS(568), - [anon_sym_const] = ACTIONS(930), - [anon_sym_default] = ACTIONS(930), - [anon_sym_union] = ACTIONS(930), - [anon_sym_POUND] = ACTIONS(932), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_ref] = ACTIONS(930), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(932), - [anon_sym__] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [sym_mutable_specifier] = ACTIONS(930), - [anon_sym_DOT_DOT] = ACTIONS(930), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(932), - [aux_sym_string_literal_token1] = ACTIONS(932), - [sym_char_literal] = ACTIONS(932), - [anon_sym_true] = ACTIONS(930), - [anon_sym_false] = ACTIONS(930), + [243] = { + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(648), + [anon_sym_u8] = ACTIONS(650), + [anon_sym_i8] = ACTIONS(650), + [anon_sym_u16] = ACTIONS(650), + [anon_sym_i16] = ACTIONS(650), + [anon_sym_u32] = ACTIONS(650), + [anon_sym_i32] = ACTIONS(650), + [anon_sym_u64] = ACTIONS(650), + [anon_sym_i64] = ACTIONS(650), + [anon_sym_u128] = ACTIONS(650), + [anon_sym_i128] = ACTIONS(650), + [anon_sym_isize] = ACTIONS(650), + [anon_sym_usize] = ACTIONS(650), + [anon_sym_f32] = ACTIONS(650), + [anon_sym_f64] = ACTIONS(650), + [anon_sym_bool] = ACTIONS(650), + [anon_sym_str] = ACTIONS(650), + [anon_sym_char] = ACTIONS(650), + [anon_sym_as] = ACTIONS(650), + [anon_sym_const] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_union] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(648), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(648), + [anon_sym_ref] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym__] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(648), + [sym_mutable_specifier] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(648), + [anon_sym_DASH_EQ] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(648), + [anon_sym_SLASH_EQ] = ACTIONS(648), + [anon_sym_PERCENT_EQ] = ACTIONS(648), + [anon_sym_AMP_EQ] = ACTIONS(648), + [anon_sym_PIPE_EQ] = ACTIONS(648), + [anon_sym_CARET_EQ] = ACTIONS(648), + [anon_sym_LT_LT_EQ] = ACTIONS(648), + [anon_sym_GT_GT_EQ] = ACTIONS(648), + [anon_sym_DOT] = ACTIONS(650), + [sym_integer_literal] = ACTIONS(648), + [aux_sym_string_literal_token1] = ACTIONS(648), + [sym_char_literal] = ACTIONS(648), + [anon_sym_true] = ACTIONS(650), + [anon_sym_false] = ACTIONS(650), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(930), - [sym_super] = ACTIONS(930), - [sym_crate] = ACTIONS(930), - [sym_metavariable] = ACTIONS(932), - [sym_raw_string_literal] = ACTIONS(932), - [sym_float_literal] = ACTIONS(932), + [sym_self] = ACTIONS(650), + [sym_super] = ACTIONS(650), + [sym_crate] = ACTIONS(650), + [sym_metavariable] = ACTIONS(648), + [sym_raw_string_literal] = ACTIONS(648), + [sym_float_literal] = ACTIONS(648), [sym_block_comment] = ACTIONS(3), }, - [242] = { + [244] = { [sym_identifier] = ACTIONS(658), [anon_sym_LPAREN] = ACTIONS(656), [anon_sym_RBRACE] = ACTIONS(656), @@ -42275,594 +45165,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(656), [sym_block_comment] = ACTIONS(3), }, - [243] = { - [sym_identifier] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(654), - [anon_sym_i8] = ACTIONS(654), - [anon_sym_u16] = ACTIONS(654), - [anon_sym_i16] = ACTIONS(654), - [anon_sym_u32] = ACTIONS(654), - [anon_sym_i32] = ACTIONS(654), - [anon_sym_u64] = ACTIONS(654), - [anon_sym_i64] = ACTIONS(654), - [anon_sym_u128] = ACTIONS(654), - [anon_sym_i128] = ACTIONS(654), - [anon_sym_isize] = ACTIONS(654), - [anon_sym_usize] = ACTIONS(654), - [anon_sym_f32] = ACTIONS(654), - [anon_sym_f64] = ACTIONS(654), - [anon_sym_bool] = ACTIONS(654), - [anon_sym_str] = ACTIONS(654), - [anon_sym_char] = ACTIONS(654), - [anon_sym_as] = ACTIONS(654), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_union] = ACTIONS(654), - [anon_sym_POUND] = ACTIONS(652), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_ref] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_COLON_COLON] = ACTIONS(652), - [anon_sym__] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(652), - [sym_mutable_specifier] = ACTIONS(654), - [anon_sym_DOT_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT_EQ] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_SLASH_EQ] = ACTIONS(652), - [anon_sym_PERCENT_EQ] = ACTIONS(652), - [anon_sym_AMP_EQ] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(652), - [anon_sym_LT_LT_EQ] = ACTIONS(652), - [anon_sym_GT_GT_EQ] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(654), - [sym_integer_literal] = ACTIONS(652), - [aux_sym_string_literal_token1] = ACTIONS(652), - [sym_char_literal] = ACTIONS(652), - [anon_sym_true] = ACTIONS(654), - [anon_sym_false] = ACTIONS(654), + [245] = { + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_QMARK] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(662), + [anon_sym_i8] = ACTIONS(662), + [anon_sym_u16] = ACTIONS(662), + [anon_sym_i16] = ACTIONS(662), + [anon_sym_u32] = ACTIONS(662), + [anon_sym_i32] = ACTIONS(662), + [anon_sym_u64] = ACTIONS(662), + [anon_sym_i64] = ACTIONS(662), + [anon_sym_u128] = ACTIONS(662), + [anon_sym_i128] = ACTIONS(662), + [anon_sym_isize] = ACTIONS(662), + [anon_sym_usize] = ACTIONS(662), + [anon_sym_f32] = ACTIONS(662), + [anon_sym_f64] = ACTIONS(662), + [anon_sym_bool] = ACTIONS(662), + [anon_sym_str] = ACTIONS(662), + [anon_sym_char] = ACTIONS(662), + [anon_sym_as] = ACTIONS(662), + [anon_sym_const] = ACTIONS(662), + [anon_sym_default] = ACTIONS(662), + [anon_sym_union] = ACTIONS(662), + [anon_sym_POUND] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(662), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_ref] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(662), + [anon_sym_GT] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(660), + [anon_sym__] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(660), + [sym_mutable_specifier] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT_EQ] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(662), + [anon_sym_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ] = ACTIONS(660), + [anon_sym_LT_EQ] = ACTIONS(660), + [anon_sym_GT_EQ] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(662), + [anon_sym_SLASH] = ACTIONS(662), + [anon_sym_PERCENT] = ACTIONS(662), + [anon_sym_PLUS_EQ] = ACTIONS(660), + [anon_sym_DASH_EQ] = ACTIONS(660), + [anon_sym_STAR_EQ] = ACTIONS(660), + [anon_sym_SLASH_EQ] = ACTIONS(660), + [anon_sym_PERCENT_EQ] = ACTIONS(660), + [anon_sym_AMP_EQ] = ACTIONS(660), + [anon_sym_PIPE_EQ] = ACTIONS(660), + [anon_sym_CARET_EQ] = ACTIONS(660), + [anon_sym_LT_LT_EQ] = ACTIONS(660), + [anon_sym_GT_GT_EQ] = ACTIONS(660), + [anon_sym_DOT] = ACTIONS(662), + [sym_integer_literal] = ACTIONS(660), + [aux_sym_string_literal_token1] = ACTIONS(660), + [sym_char_literal] = ACTIONS(660), + [anon_sym_true] = ACTIONS(662), + [anon_sym_false] = ACTIONS(662), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(654), - [sym_super] = ACTIONS(654), - [sym_crate] = ACTIONS(654), - [sym_metavariable] = ACTIONS(652), - [sym_raw_string_literal] = ACTIONS(652), - [sym_float_literal] = ACTIONS(652), + [sym_self] = ACTIONS(662), + [sym_super] = ACTIONS(662), + [sym_crate] = ACTIONS(662), + [sym_metavariable] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(660), + [sym_float_literal] = ACTIONS(660), [sym_block_comment] = ACTIONS(3), }, - [244] = { - [sym_identifier] = ACTIONS(630), - [anon_sym_LPAREN] = ACTIONS(628), - [anon_sym_RBRACE] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_PLUS] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_u8] = ACTIONS(630), - [anon_sym_i8] = ACTIONS(630), - [anon_sym_u16] = ACTIONS(630), - [anon_sym_i16] = ACTIONS(630), - [anon_sym_u32] = ACTIONS(630), - [anon_sym_i32] = ACTIONS(630), - [anon_sym_u64] = ACTIONS(630), - [anon_sym_i64] = ACTIONS(630), - [anon_sym_u128] = ACTIONS(630), - [anon_sym_i128] = ACTIONS(630), - [anon_sym_isize] = ACTIONS(630), - [anon_sym_usize] = ACTIONS(630), - [anon_sym_f32] = ACTIONS(630), - [anon_sym_f64] = ACTIONS(630), - [anon_sym_bool] = ACTIONS(630), - [anon_sym_str] = ACTIONS(630), - [anon_sym_char] = ACTIONS(630), - [anon_sym_as] = ACTIONS(630), - [anon_sym_const] = ACTIONS(630), - [anon_sym_default] = ACTIONS(630), - [anon_sym_union] = ACTIONS(630), - [anon_sym_POUND] = ACTIONS(628), - [anon_sym_EQ] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(628), - [anon_sym_ref] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_GT] = ACTIONS(630), - [anon_sym_COLON_COLON] = ACTIONS(628), - [anon_sym__] = ACTIONS(630), - [anon_sym_AMP] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [sym_mutable_specifier] = ACTIONS(630), - [anon_sym_DOT_DOT] = ACTIONS(630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(628), - [anon_sym_PIPE_PIPE] = ACTIONS(628), - [anon_sym_PIPE] = ACTIONS(630), - [anon_sym_CARET] = ACTIONS(630), - [anon_sym_EQ_EQ] = ACTIONS(628), - [anon_sym_BANG_EQ] = ACTIONS(628), - [anon_sym_LT_EQ] = ACTIONS(628), - [anon_sym_GT_EQ] = ACTIONS(628), - [anon_sym_LT_LT] = ACTIONS(630), - [anon_sym_GT_GT] = ACTIONS(630), - [anon_sym_SLASH] = ACTIONS(630), - [anon_sym_PERCENT] = ACTIONS(630), - [anon_sym_PLUS_EQ] = ACTIONS(628), - [anon_sym_DASH_EQ] = ACTIONS(628), - [anon_sym_STAR_EQ] = ACTIONS(628), - [anon_sym_SLASH_EQ] = ACTIONS(628), - [anon_sym_PERCENT_EQ] = ACTIONS(628), - [anon_sym_AMP_EQ] = ACTIONS(628), - [anon_sym_PIPE_EQ] = ACTIONS(628), - [anon_sym_CARET_EQ] = ACTIONS(628), - [anon_sym_LT_LT_EQ] = ACTIONS(628), - [anon_sym_GT_GT_EQ] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(630), - [sym_integer_literal] = ACTIONS(628), - [aux_sym_string_literal_token1] = ACTIONS(628), - [sym_char_literal] = ACTIONS(628), - [anon_sym_true] = ACTIONS(630), - [anon_sym_false] = ACTIONS(630), + [246] = { + [sym_identifier] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_as] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_POUND] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(580), + [anon_sym_COMMA] = ACTIONS(578), + [anon_sym_ref] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym__] = ACTIONS(580), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [sym_mutable_specifier] = ACTIONS(580), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_PLUS_EQ] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(578), + [anon_sym_STAR_EQ] = ACTIONS(578), + [anon_sym_SLASH_EQ] = ACTIONS(578), + [anon_sym_PERCENT_EQ] = ACTIONS(578), + [anon_sym_AMP_EQ] = ACTIONS(578), + [anon_sym_PIPE_EQ] = ACTIONS(578), + [anon_sym_CARET_EQ] = ACTIONS(578), + [anon_sym_LT_LT_EQ] = ACTIONS(578), + [anon_sym_GT_GT_EQ] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(580), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(630), - [sym_super] = ACTIONS(630), - [sym_crate] = ACTIONS(630), - [sym_metavariable] = ACTIONS(628), - [sym_raw_string_literal] = ACTIONS(628), - [sym_float_literal] = ACTIONS(628), - [sym_block_comment] = ACTIONS(3), - }, - [245] = { - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_EQ] = ACTIONS(638), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_ref] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(638), - [anon_sym_COLON_COLON] = ACTIONS(636), - [anon_sym__] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(636), - [sym_mutable_specifier] = ACTIONS(638), - [anon_sym_DOT_DOT] = ACTIONS(638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(638), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_LT_LT] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_SLASH] = ACTIONS(638), - [anon_sym_PERCENT] = ACTIONS(638), - [anon_sym_PLUS_EQ] = ACTIONS(636), - [anon_sym_DASH_EQ] = ACTIONS(636), - [anon_sym_STAR_EQ] = ACTIONS(636), - [anon_sym_SLASH_EQ] = ACTIONS(636), - [anon_sym_PERCENT_EQ] = ACTIONS(636), - [anon_sym_AMP_EQ] = ACTIONS(636), - [anon_sym_PIPE_EQ] = ACTIONS(636), - [anon_sym_CARET_EQ] = ACTIONS(636), - [anon_sym_LT_LT_EQ] = ACTIONS(636), - [anon_sym_GT_GT_EQ] = ACTIONS(636), - [anon_sym_DOT] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(636), - [aux_sym_string_literal_token1] = ACTIONS(636), - [sym_char_literal] = ACTIONS(636), - [anon_sym_true] = ACTIONS(638), - [anon_sym_false] = ACTIONS(638), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(636), - [sym_raw_string_literal] = ACTIONS(636), - [sym_float_literal] = ACTIONS(636), - [sym_block_comment] = ACTIONS(3), - }, - [246] = { - [sym_identifier] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_RBRACE] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(678), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_ref] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym__] = ACTIONS(678), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [sym_mutable_specifier] = ACTIONS(678), - [anon_sym_DOT_DOT] = ACTIONS(678), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(678), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(678), - [anon_sym_CARET] = ACTIONS(678), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_PERCENT] = ACTIONS(678), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(676), - [aux_sym_string_literal_token1] = ACTIONS(676), - [sym_char_literal] = ACTIONS(676), - [anon_sym_true] = ACTIONS(678), - [anon_sym_false] = ACTIONS(678), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym_metavariable] = ACTIONS(676), - [sym_raw_string_literal] = ACTIONS(676), - [sym_float_literal] = ACTIONS(676), + [sym_self] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_crate] = ACTIONS(580), + [sym_metavariable] = ACTIONS(578), + [sym_raw_string_literal] = ACTIONS(578), + [sym_float_literal] = ACTIONS(578), [sym_block_comment] = ACTIONS(3), }, [247] = { - [sym_identifier] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(578), - [anon_sym_ref] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym__] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [sym_mutable_specifier] = ACTIONS(580), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), + [sym_identifier] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(602), + [anon_sym_i8] = ACTIONS(602), + [anon_sym_u16] = ACTIONS(602), + [anon_sym_i16] = ACTIONS(602), + [anon_sym_u32] = ACTIONS(602), + [anon_sym_i32] = ACTIONS(602), + [anon_sym_u64] = ACTIONS(602), + [anon_sym_i64] = ACTIONS(602), + [anon_sym_u128] = ACTIONS(602), + [anon_sym_i128] = ACTIONS(602), + [anon_sym_isize] = ACTIONS(602), + [anon_sym_usize] = ACTIONS(602), + [anon_sym_f32] = ACTIONS(602), + [anon_sym_f64] = ACTIONS(602), + [anon_sym_bool] = ACTIONS(602), + [anon_sym_str] = ACTIONS(602), + [anon_sym_char] = ACTIONS(602), + [anon_sym_as] = ACTIONS(602), + [anon_sym_const] = ACTIONS(602), + [anon_sym_default] = ACTIONS(602), + [anon_sym_union] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(600), + [anon_sym_EQ] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(600), + [anon_sym_ref] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(600), + [anon_sym__] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [sym_mutable_specifier] = ACTIONS(602), + [anon_sym_DOT_DOT] = ACTIONS(602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_EQ_EQ] = ACTIONS(600), + [anon_sym_BANG_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(602), + [anon_sym_PERCENT] = ACTIONS(602), + [anon_sym_PLUS_EQ] = ACTIONS(600), + [anon_sym_DASH_EQ] = ACTIONS(600), + [anon_sym_STAR_EQ] = ACTIONS(600), + [anon_sym_SLASH_EQ] = ACTIONS(600), + [anon_sym_PERCENT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(600), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_DOT] = ACTIONS(602), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(600), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(602), + [anon_sym_false] = ACTIONS(602), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(602), + [sym_super] = ACTIONS(602), + [sym_crate] = ACTIONS(602), + [sym_metavariable] = ACTIONS(600), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, [248] = { - [sym_identifier] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(582), - [anon_sym_u8] = ACTIONS(584), - [anon_sym_i8] = ACTIONS(584), - [anon_sym_u16] = ACTIONS(584), - [anon_sym_i16] = ACTIONS(584), - [anon_sym_u32] = ACTIONS(584), - [anon_sym_i32] = ACTIONS(584), - [anon_sym_u64] = ACTIONS(584), - [anon_sym_i64] = ACTIONS(584), - [anon_sym_u128] = ACTIONS(584), - [anon_sym_i128] = ACTIONS(584), - [anon_sym_isize] = ACTIONS(584), - [anon_sym_usize] = ACTIONS(584), - [anon_sym_f32] = ACTIONS(584), - [anon_sym_f64] = ACTIONS(584), - [anon_sym_bool] = ACTIONS(584), - [anon_sym_str] = ACTIONS(584), - [anon_sym_char] = ACTIONS(584), - [anon_sym_as] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_default] = ACTIONS(584), - [anon_sym_union] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_ref] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_COLON_COLON] = ACTIONS(582), - [anon_sym__] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(582), - [sym_mutable_specifier] = ACTIONS(584), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_PLUS_EQ] = ACTIONS(582), - [anon_sym_DASH_EQ] = ACTIONS(582), - [anon_sym_STAR_EQ] = ACTIONS(582), - [anon_sym_SLASH_EQ] = ACTIONS(582), - [anon_sym_PERCENT_EQ] = ACTIONS(582), - [anon_sym_AMP_EQ] = ACTIONS(582), - [anon_sym_PIPE_EQ] = ACTIONS(582), - [anon_sym_CARET_EQ] = ACTIONS(582), - [anon_sym_LT_LT_EQ] = ACTIONS(582), - [anon_sym_GT_GT_EQ] = ACTIONS(582), - [anon_sym_DOT] = ACTIONS(584), - [sym_integer_literal] = ACTIONS(582), - [aux_sym_string_literal_token1] = ACTIONS(582), - [sym_char_literal] = ACTIONS(582), - [anon_sym_true] = ACTIONS(584), - [anon_sym_false] = ACTIONS(584), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(584), - [sym_super] = ACTIONS(584), - [sym_crate] = ACTIONS(584), - [sym_metavariable] = ACTIONS(582), - [sym_raw_string_literal] = ACTIONS(582), - [sym_float_literal] = ACTIONS(582), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2016), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2013), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_type_binding] = STATE(2367), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [sym_block] = STATE(2367), + [sym__literal] = STATE(2367), + [sym_string_literal] = STATE(2253), + [sym_boolean_literal] = STATE(2253), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(920), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(920), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_raw_string_literal] = ACTIONS(920), + [sym_float_literal] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, [249] = { - [sym_identifier] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_u8] = ACTIONS(600), - [anon_sym_i8] = ACTIONS(600), - [anon_sym_u16] = ACTIONS(600), - [anon_sym_i16] = ACTIONS(600), - [anon_sym_u32] = ACTIONS(600), - [anon_sym_i32] = ACTIONS(600), - [anon_sym_u64] = ACTIONS(600), - [anon_sym_i64] = ACTIONS(600), - [anon_sym_u128] = ACTIONS(600), - [anon_sym_i128] = ACTIONS(600), - [anon_sym_isize] = ACTIONS(600), - [anon_sym_usize] = ACTIONS(600), - [anon_sym_f32] = ACTIONS(600), - [anon_sym_f64] = ACTIONS(600), - [anon_sym_bool] = ACTIONS(600), - [anon_sym_str] = ACTIONS(600), - [anon_sym_char] = ACTIONS(600), - [anon_sym_as] = ACTIONS(600), - [anon_sym_const] = ACTIONS(600), - [anon_sym_default] = ACTIONS(600), - [anon_sym_union] = ACTIONS(600), - [anon_sym_POUND] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(600), - [anon_sym_COMMA] = ACTIONS(598), - [anon_sym_ref] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(600), - [anon_sym_GT] = ACTIONS(600), - [anon_sym_COLON_COLON] = ACTIONS(598), - [anon_sym__] = ACTIONS(600), - [anon_sym_AMP] = ACTIONS(600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [sym_mutable_specifier] = ACTIONS(600), - [anon_sym_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT_EQ] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_PIPE] = ACTIONS(600), - [anon_sym_CARET] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(598), - [anon_sym_BANG_EQ] = ACTIONS(598), - [anon_sym_LT_EQ] = ACTIONS(598), - [anon_sym_GT_EQ] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(600), - [anon_sym_PLUS_EQ] = ACTIONS(598), - [anon_sym_DASH_EQ] = ACTIONS(598), - [anon_sym_STAR_EQ] = ACTIONS(598), - [anon_sym_SLASH_EQ] = ACTIONS(598), - [anon_sym_PERCENT_EQ] = ACTIONS(598), - [anon_sym_AMP_EQ] = ACTIONS(598), - [anon_sym_PIPE_EQ] = ACTIONS(598), - [anon_sym_CARET_EQ] = ACTIONS(598), - [anon_sym_LT_LT_EQ] = ACTIONS(598), - [anon_sym_GT_GT_EQ] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(600), - [sym_integer_literal] = ACTIONS(598), - [aux_sym_string_literal_token1] = ACTIONS(598), - [sym_char_literal] = ACTIONS(598), - [anon_sym_true] = ACTIONS(600), - [anon_sym_false] = ACTIONS(600), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_crate] = ACTIONS(600), - [sym_metavariable] = ACTIONS(598), - [sym_raw_string_literal] = ACTIONS(598), - [sym_float_literal] = ACTIONS(598), + [sym_identifier] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_QMARK] = ACTIONS(644), + [anon_sym_u8] = ACTIONS(646), + [anon_sym_i8] = ACTIONS(646), + [anon_sym_u16] = ACTIONS(646), + [anon_sym_i16] = ACTIONS(646), + [anon_sym_u32] = ACTIONS(646), + [anon_sym_i32] = ACTIONS(646), + [anon_sym_u64] = ACTIONS(646), + [anon_sym_i64] = ACTIONS(646), + [anon_sym_u128] = ACTIONS(646), + [anon_sym_i128] = ACTIONS(646), + [anon_sym_isize] = ACTIONS(646), + [anon_sym_usize] = ACTIONS(646), + [anon_sym_f32] = ACTIONS(646), + [anon_sym_f64] = ACTIONS(646), + [anon_sym_bool] = ACTIONS(646), + [anon_sym_str] = ACTIONS(646), + [anon_sym_char] = ACTIONS(646), + [anon_sym_as] = ACTIONS(646), + [anon_sym_const] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_union] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_ref] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(644), + [anon_sym__] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(644), + [sym_mutable_specifier] = ACTIONS(646), + [anon_sym_DOT_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_LT_LT] = ACTIONS(646), + [anon_sym_GT_GT] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PERCENT] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_SLASH_EQ] = ACTIONS(644), + [anon_sym_PERCENT_EQ] = ACTIONS(644), + [anon_sym_AMP_EQ] = ACTIONS(644), + [anon_sym_PIPE_EQ] = ACTIONS(644), + [anon_sym_CARET_EQ] = ACTIONS(644), + [anon_sym_LT_LT_EQ] = ACTIONS(644), + [anon_sym_GT_GT_EQ] = ACTIONS(644), + [anon_sym_DOT] = ACTIONS(646), + [sym_integer_literal] = ACTIONS(644), + [aux_sym_string_literal_token1] = ACTIONS(644), + [sym_char_literal] = ACTIONS(644), + [anon_sym_true] = ACTIONS(646), + [anon_sym_false] = ACTIONS(646), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(646), + [sym_super] = ACTIONS(646), + [sym_crate] = ACTIONS(646), + [sym_metavariable] = ACTIONS(644), + [sym_raw_string_literal] = ACTIONS(644), + [sym_float_literal] = ACTIONS(644), [sym_block_comment] = ACTIONS(3), }, [250] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1897), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2225), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [sym_block] = STATE(2225), - [sym__literal] = STATE(2225), - [sym_string_literal] = STATE(2318), - [sym_boolean_literal] = STATE(2318), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2016), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2013), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_type_binding] = STATE(2367), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [sym_block] = STATE(2367), + [sym__literal] = STATE(2367), + [sym_string_literal] = STATE(2253), + [sym_boolean_literal] = STATE(2253), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(900), [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_LBRACE] = ACTIONS(904), @@ -42897,7 +45627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(934), + [anon_sym_GT] = ACTIONS(928), [anon_sym_COLON_COLON] = ACTIONS(916), [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), @@ -42916,513 +45646,513 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [251] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(634), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_u8] = ACTIONS(634), - [anon_sym_i8] = ACTIONS(634), - [anon_sym_u16] = ACTIONS(634), - [anon_sym_i16] = ACTIONS(634), - [anon_sym_u32] = ACTIONS(634), - [anon_sym_i32] = ACTIONS(634), - [anon_sym_u64] = ACTIONS(634), - [anon_sym_i64] = ACTIONS(634), - [anon_sym_u128] = ACTIONS(634), - [anon_sym_i128] = ACTIONS(634), - [anon_sym_isize] = ACTIONS(634), - [anon_sym_usize] = ACTIONS(634), - [anon_sym_f32] = ACTIONS(634), - [anon_sym_f64] = ACTIONS(634), - [anon_sym_bool] = ACTIONS(634), - [anon_sym_str] = ACTIONS(634), - [anon_sym_char] = ACTIONS(634), - [anon_sym_as] = ACTIONS(634), - [anon_sym_const] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_union] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(632), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(632), - [anon_sym_ref] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(634), - [anon_sym_COLON_COLON] = ACTIONS(632), - [anon_sym__] = ACTIONS(634), - [anon_sym_AMP] = ACTIONS(634), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [sym_mutable_specifier] = ACTIONS(634), - [anon_sym_DOT_DOT] = ACTIONS(634), - [anon_sym_DOT_DOT_EQ] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(634), - [anon_sym_AMP_AMP] = ACTIONS(632), - [anon_sym_PIPE_PIPE] = ACTIONS(632), - [anon_sym_PIPE] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_EQ_EQ] = ACTIONS(632), - [anon_sym_BANG_EQ] = ACTIONS(632), - [anon_sym_LT_EQ] = ACTIONS(632), - [anon_sym_GT_EQ] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_SLASH] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(632), - [anon_sym_DASH_EQ] = ACTIONS(632), - [anon_sym_STAR_EQ] = ACTIONS(632), - [anon_sym_SLASH_EQ] = ACTIONS(632), - [anon_sym_PERCENT_EQ] = ACTIONS(632), - [anon_sym_AMP_EQ] = ACTIONS(632), - [anon_sym_PIPE_EQ] = ACTIONS(632), - [anon_sym_CARET_EQ] = ACTIONS(632), - [anon_sym_LT_LT_EQ] = ACTIONS(632), - [anon_sym_GT_GT_EQ] = ACTIONS(632), - [anon_sym_DOT] = ACTIONS(634), - [sym_integer_literal] = ACTIONS(632), - [aux_sym_string_literal_token1] = ACTIONS(632), - [sym_char_literal] = ACTIONS(632), - [anon_sym_true] = ACTIONS(634), - [anon_sym_false] = ACTIONS(634), + [sym_identifier] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_u8] = ACTIONS(630), + [anon_sym_i8] = ACTIONS(630), + [anon_sym_u16] = ACTIONS(630), + [anon_sym_i16] = ACTIONS(630), + [anon_sym_u32] = ACTIONS(630), + [anon_sym_i32] = ACTIONS(630), + [anon_sym_u64] = ACTIONS(630), + [anon_sym_i64] = ACTIONS(630), + [anon_sym_u128] = ACTIONS(630), + [anon_sym_i128] = ACTIONS(630), + [anon_sym_isize] = ACTIONS(630), + [anon_sym_usize] = ACTIONS(630), + [anon_sym_f32] = ACTIONS(630), + [anon_sym_f64] = ACTIONS(630), + [anon_sym_bool] = ACTIONS(630), + [anon_sym_str] = ACTIONS(630), + [anon_sym_char] = ACTIONS(630), + [anon_sym_as] = ACTIONS(630), + [anon_sym_const] = ACTIONS(630), + [anon_sym_default] = ACTIONS(630), + [anon_sym_union] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(628), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(628), + [anon_sym_ref] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_COLON_COLON] = ACTIONS(628), + [anon_sym__] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(630), + [anon_sym_DOT_DOT_DOT] = ACTIONS(628), + [sym_mutable_specifier] = ACTIONS(630), + [anon_sym_DOT_DOT] = ACTIONS(630), + [anon_sym_DOT_DOT_EQ] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_PIPE_PIPE] = ACTIONS(628), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym_EQ_EQ] = ACTIONS(628), + [anon_sym_BANG_EQ] = ACTIONS(628), + [anon_sym_LT_EQ] = ACTIONS(628), + [anon_sym_GT_EQ] = ACTIONS(628), + [anon_sym_LT_LT] = ACTIONS(630), + [anon_sym_GT_GT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_PLUS_EQ] = ACTIONS(628), + [anon_sym_DASH_EQ] = ACTIONS(628), + [anon_sym_STAR_EQ] = ACTIONS(628), + [anon_sym_SLASH_EQ] = ACTIONS(628), + [anon_sym_PERCENT_EQ] = ACTIONS(628), + [anon_sym_AMP_EQ] = ACTIONS(628), + [anon_sym_PIPE_EQ] = ACTIONS(628), + [anon_sym_CARET_EQ] = ACTIONS(628), + [anon_sym_LT_LT_EQ] = ACTIONS(628), + [anon_sym_GT_GT_EQ] = ACTIONS(628), + [anon_sym_DOT] = ACTIONS(630), + [sym_integer_literal] = ACTIONS(628), + [aux_sym_string_literal_token1] = ACTIONS(628), + [sym_char_literal] = ACTIONS(628), + [anon_sym_true] = ACTIONS(630), + [anon_sym_false] = ACTIONS(630), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(634), - [sym_super] = ACTIONS(634), - [sym_crate] = ACTIONS(634), - [sym_metavariable] = ACTIONS(632), - [sym_raw_string_literal] = ACTIONS(632), - [sym_float_literal] = ACTIONS(632), + [sym_self] = ACTIONS(630), + [sym_super] = ACTIONS(630), + [sym_crate] = ACTIONS(630), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(628), + [sym_float_literal] = ACTIONS(628), [sym_block_comment] = ACTIONS(3), }, [252] = { - [sym_identifier] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(640), - [anon_sym_PLUS] = ACTIONS(642), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(642), - [anon_sym_i8] = ACTIONS(642), - [anon_sym_u16] = ACTIONS(642), - [anon_sym_i16] = ACTIONS(642), - [anon_sym_u32] = ACTIONS(642), - [anon_sym_i32] = ACTIONS(642), - [anon_sym_u64] = ACTIONS(642), - [anon_sym_i64] = ACTIONS(642), - [anon_sym_u128] = ACTIONS(642), - [anon_sym_i128] = ACTIONS(642), - [anon_sym_isize] = ACTIONS(642), - [anon_sym_usize] = ACTIONS(642), - [anon_sym_f32] = ACTIONS(642), - [anon_sym_f64] = ACTIONS(642), - [anon_sym_bool] = ACTIONS(642), - [anon_sym_str] = ACTIONS(642), - [anon_sym_char] = ACTIONS(642), - [anon_sym_as] = ACTIONS(642), - [anon_sym_const] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), - [anon_sym_union] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(642), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_ref] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(642), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym__] = ACTIONS(642), - [anon_sym_AMP] = ACTIONS(642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [sym_mutable_specifier] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(642), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_CARET] = ACTIONS(642), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(642), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_DOT] = ACTIONS(642), - [sym_integer_literal] = ACTIONS(640), - [aux_sym_string_literal_token1] = ACTIONS(640), - [sym_char_literal] = ACTIONS(640), - [anon_sym_true] = ACTIONS(642), - [anon_sym_false] = ACTIONS(642), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(642), - [sym_super] = ACTIONS(642), - [sym_crate] = ACTIONS(642), - [sym_metavariable] = ACTIONS(640), - [sym_raw_string_literal] = ACTIONS(640), - [sym_float_literal] = ACTIONS(640), + [sym_identifier] = ACTIONS(610), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(608), + [anon_sym_u8] = ACTIONS(610), + [anon_sym_i8] = ACTIONS(610), + [anon_sym_u16] = ACTIONS(610), + [anon_sym_i16] = ACTIONS(610), + [anon_sym_u32] = ACTIONS(610), + [anon_sym_i32] = ACTIONS(610), + [anon_sym_u64] = ACTIONS(610), + [anon_sym_i64] = ACTIONS(610), + [anon_sym_u128] = ACTIONS(610), + [anon_sym_i128] = ACTIONS(610), + [anon_sym_isize] = ACTIONS(610), + [anon_sym_usize] = ACTIONS(610), + [anon_sym_f32] = ACTIONS(610), + [anon_sym_f64] = ACTIONS(610), + [anon_sym_bool] = ACTIONS(610), + [anon_sym_str] = ACTIONS(610), + [anon_sym_char] = ACTIONS(610), + [anon_sym_as] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_default] = ACTIONS(610), + [anon_sym_union] = ACTIONS(610), + [anon_sym_POUND] = ACTIONS(608), + [anon_sym_EQ] = ACTIONS(610), + [anon_sym_COMMA] = ACTIONS(608), + [anon_sym_ref] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_COLON_COLON] = ACTIONS(608), + [anon_sym__] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(608), + [sym_mutable_specifier] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_BANG_EQ] = ACTIONS(608), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(610), + [anon_sym_PLUS_EQ] = ACTIONS(608), + [anon_sym_DASH_EQ] = ACTIONS(608), + [anon_sym_STAR_EQ] = ACTIONS(608), + [anon_sym_SLASH_EQ] = ACTIONS(608), + [anon_sym_PERCENT_EQ] = ACTIONS(608), + [anon_sym_AMP_EQ] = ACTIONS(608), + [anon_sym_PIPE_EQ] = ACTIONS(608), + [anon_sym_CARET_EQ] = ACTIONS(608), + [anon_sym_LT_LT_EQ] = ACTIONS(608), + [anon_sym_GT_GT_EQ] = ACTIONS(608), + [anon_sym_DOT] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(608), + [aux_sym_string_literal_token1] = ACTIONS(608), + [sym_char_literal] = ACTIONS(608), + [anon_sym_true] = ACTIONS(610), + [anon_sym_false] = ACTIONS(610), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(610), + [sym_super] = ACTIONS(610), + [sym_crate] = ACTIONS(610), + [sym_metavariable] = ACTIONS(608), + [sym_raw_string_literal] = ACTIONS(608), + [sym_float_literal] = ACTIONS(608), [sym_block_comment] = ACTIONS(3), }, [253] = { - [sym_identifier] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(558), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(558), - [anon_sym_PLUS] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_QMARK] = ACTIONS(558), - [anon_sym_u8] = ACTIONS(560), - [anon_sym_i8] = ACTIONS(560), - [anon_sym_u16] = ACTIONS(560), - [anon_sym_i16] = ACTIONS(560), - [anon_sym_u32] = ACTIONS(560), - [anon_sym_i32] = ACTIONS(560), - [anon_sym_u64] = ACTIONS(560), - [anon_sym_i64] = ACTIONS(560), - [anon_sym_u128] = ACTIONS(560), - [anon_sym_i128] = ACTIONS(560), - [anon_sym_isize] = ACTIONS(560), - [anon_sym_usize] = ACTIONS(560), - [anon_sym_f32] = ACTIONS(560), - [anon_sym_f64] = ACTIONS(560), - [anon_sym_bool] = ACTIONS(560), - [anon_sym_str] = ACTIONS(560), - [anon_sym_char] = ACTIONS(560), - [anon_sym_as] = ACTIONS(560), - [anon_sym_const] = ACTIONS(560), - [anon_sym_default] = ACTIONS(560), - [anon_sym_union] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(558), - [anon_sym_EQ] = ACTIONS(560), - [anon_sym_COMMA] = ACTIONS(558), - [anon_sym_ref] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_COLON_COLON] = ACTIONS(558), - [anon_sym__] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(558), - [sym_mutable_specifier] = ACTIONS(560), - [anon_sym_DOT_DOT] = ACTIONS(560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(558), - [anon_sym_BANG_EQ] = ACTIONS(558), - [anon_sym_LT_EQ] = ACTIONS(558), - [anon_sym_GT_EQ] = ACTIONS(558), - [anon_sym_LT_LT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(560), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_PLUS_EQ] = ACTIONS(558), - [anon_sym_DASH_EQ] = ACTIONS(558), - [anon_sym_STAR_EQ] = ACTIONS(558), - [anon_sym_SLASH_EQ] = ACTIONS(558), - [anon_sym_PERCENT_EQ] = ACTIONS(558), - [anon_sym_AMP_EQ] = ACTIONS(558), - [anon_sym_PIPE_EQ] = ACTIONS(558), - [anon_sym_CARET_EQ] = ACTIONS(558), - [anon_sym_LT_LT_EQ] = ACTIONS(558), - [anon_sym_GT_GT_EQ] = ACTIONS(558), - [anon_sym_DOT] = ACTIONS(560), - [sym_integer_literal] = ACTIONS(558), - [aux_sym_string_literal_token1] = ACTIONS(558), - [sym_char_literal] = ACTIONS(558), - [anon_sym_true] = ACTIONS(560), - [anon_sym_false] = ACTIONS(560), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(560), - [sym_super] = ACTIONS(560), - [sym_crate] = ACTIONS(560), - [sym_metavariable] = ACTIONS(558), - [sym_raw_string_literal] = ACTIONS(558), - [sym_float_literal] = ACTIONS(558), + [sym_identifier] = ACTIONS(606), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(604), + [anon_sym_u8] = ACTIONS(606), + [anon_sym_i8] = ACTIONS(606), + [anon_sym_u16] = ACTIONS(606), + [anon_sym_i16] = ACTIONS(606), + [anon_sym_u32] = ACTIONS(606), + [anon_sym_i32] = ACTIONS(606), + [anon_sym_u64] = ACTIONS(606), + [anon_sym_i64] = ACTIONS(606), + [anon_sym_u128] = ACTIONS(606), + [anon_sym_i128] = ACTIONS(606), + [anon_sym_isize] = ACTIONS(606), + [anon_sym_usize] = ACTIONS(606), + [anon_sym_f32] = ACTIONS(606), + [anon_sym_f64] = ACTIONS(606), + [anon_sym_bool] = ACTIONS(606), + [anon_sym_str] = ACTIONS(606), + [anon_sym_char] = ACTIONS(606), + [anon_sym_as] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_default] = ACTIONS(606), + [anon_sym_union] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [anon_sym_EQ] = ACTIONS(606), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_ref] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(604), + [anon_sym__] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(604), + [sym_mutable_specifier] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_AMP_AMP] = ACTIONS(604), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_CARET] = ACTIONS(606), + [anon_sym_EQ_EQ] = ACTIONS(604), + [anon_sym_BANG_EQ] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_LT_LT] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(606), + [anon_sym_PLUS_EQ] = ACTIONS(604), + [anon_sym_DASH_EQ] = ACTIONS(604), + [anon_sym_STAR_EQ] = ACTIONS(604), + [anon_sym_SLASH_EQ] = ACTIONS(604), + [anon_sym_PERCENT_EQ] = ACTIONS(604), + [anon_sym_AMP_EQ] = ACTIONS(604), + [anon_sym_PIPE_EQ] = ACTIONS(604), + [anon_sym_CARET_EQ] = ACTIONS(604), + [anon_sym_LT_LT_EQ] = ACTIONS(604), + [anon_sym_GT_GT_EQ] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(606), + [sym_integer_literal] = ACTIONS(604), + [aux_sym_string_literal_token1] = ACTIONS(604), + [sym_char_literal] = ACTIONS(604), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(606), + [sym_super] = ACTIONS(606), + [sym_crate] = ACTIONS(606), + [sym_metavariable] = ACTIONS(604), + [sym_raw_string_literal] = ACTIONS(604), + [sym_float_literal] = ACTIONS(604), [sym_block_comment] = ACTIONS(3), }, [254] = { - [sym_identifier] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_QMARK] = ACTIONS(624), - [anon_sym_u8] = ACTIONS(626), - [anon_sym_i8] = ACTIONS(626), - [anon_sym_u16] = ACTIONS(626), - [anon_sym_i16] = ACTIONS(626), - [anon_sym_u32] = ACTIONS(626), - [anon_sym_i32] = ACTIONS(626), - [anon_sym_u64] = ACTIONS(626), - [anon_sym_i64] = ACTIONS(626), - [anon_sym_u128] = ACTIONS(626), - [anon_sym_i128] = ACTIONS(626), - [anon_sym_isize] = ACTIONS(626), - [anon_sym_usize] = ACTIONS(626), - [anon_sym_f32] = ACTIONS(626), - [anon_sym_f64] = ACTIONS(626), - [anon_sym_bool] = ACTIONS(626), - [anon_sym_str] = ACTIONS(626), - [anon_sym_char] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_POUND] = ACTIONS(624), - [anon_sym_EQ] = ACTIONS(626), - [anon_sym_COMMA] = ACTIONS(624), - [anon_sym_ref] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_COLON_COLON] = ACTIONS(624), - [anon_sym__] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(624), - [sym_mutable_specifier] = ACTIONS(626), - [anon_sym_DOT_DOT] = ACTIONS(626), - [anon_sym_DOT_DOT_EQ] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_CARET] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_BANG_EQ] = ACTIONS(624), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_SLASH] = ACTIONS(626), - [anon_sym_PERCENT] = ACTIONS(626), - [anon_sym_PLUS_EQ] = ACTIONS(624), - [anon_sym_DASH_EQ] = ACTIONS(624), - [anon_sym_STAR_EQ] = ACTIONS(624), - [anon_sym_SLASH_EQ] = ACTIONS(624), - [anon_sym_PERCENT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(624), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_DOT] = ACTIONS(626), - [sym_integer_literal] = ACTIONS(624), - [aux_sym_string_literal_token1] = ACTIONS(624), - [sym_char_literal] = ACTIONS(624), - [anon_sym_true] = ACTIONS(626), - [anon_sym_false] = ACTIONS(626), + [sym_identifier] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_RBRACE] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_QMARK] = ACTIONS(568), + [anon_sym_u8] = ACTIONS(930), + [anon_sym_i8] = ACTIONS(930), + [anon_sym_u16] = ACTIONS(930), + [anon_sym_i16] = ACTIONS(930), + [anon_sym_u32] = ACTIONS(930), + [anon_sym_i32] = ACTIONS(930), + [anon_sym_u64] = ACTIONS(930), + [anon_sym_i64] = ACTIONS(930), + [anon_sym_u128] = ACTIONS(930), + [anon_sym_i128] = ACTIONS(930), + [anon_sym_isize] = ACTIONS(930), + [anon_sym_usize] = ACTIONS(930), + [anon_sym_f32] = ACTIONS(930), + [anon_sym_f64] = ACTIONS(930), + [anon_sym_bool] = ACTIONS(930), + [anon_sym_str] = ACTIONS(930), + [anon_sym_char] = ACTIONS(930), + [anon_sym_as] = ACTIONS(566), + [anon_sym_const] = ACTIONS(930), + [anon_sym_default] = ACTIONS(930), + [anon_sym_union] = ACTIONS(930), + [anon_sym_POUND] = ACTIONS(932), + [anon_sym_EQ] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(568), + [anon_sym_ref] = ACTIONS(930), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_GT] = ACTIONS(566), + [anon_sym_COLON_COLON] = ACTIONS(932), + [anon_sym__] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_DOT_DOT_DOT] = ACTIONS(568), + [sym_mutable_specifier] = ACTIONS(930), + [anon_sym_DOT_DOT] = ACTIONS(930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(566), + [sym_integer_literal] = ACTIONS(932), + [aux_sym_string_literal_token1] = ACTIONS(932), + [sym_char_literal] = ACTIONS(932), + [anon_sym_true] = ACTIONS(930), + [anon_sym_false] = ACTIONS(930), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_crate] = ACTIONS(626), - [sym_metavariable] = ACTIONS(624), - [sym_raw_string_literal] = ACTIONS(624), - [sym_float_literal] = ACTIONS(624), + [sym_self] = ACTIONS(930), + [sym_super] = ACTIONS(930), + [sym_crate] = ACTIONS(930), + [sym_metavariable] = ACTIONS(932), + [sym_raw_string_literal] = ACTIONS(932), + [sym_float_literal] = ACTIONS(932), [sym_block_comment] = ACTIONS(3), }, [255] = { - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RBRACE] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(660), - [anon_sym_u8] = ACTIONS(662), - [anon_sym_i8] = ACTIONS(662), - [anon_sym_u16] = ACTIONS(662), - [anon_sym_i16] = ACTIONS(662), - [anon_sym_u32] = ACTIONS(662), - [anon_sym_i32] = ACTIONS(662), - [anon_sym_u64] = ACTIONS(662), - [anon_sym_i64] = ACTIONS(662), - [anon_sym_u128] = ACTIONS(662), - [anon_sym_i128] = ACTIONS(662), - [anon_sym_isize] = ACTIONS(662), - [anon_sym_usize] = ACTIONS(662), - [anon_sym_f32] = ACTIONS(662), - [anon_sym_f64] = ACTIONS(662), - [anon_sym_bool] = ACTIONS(662), - [anon_sym_str] = ACTIONS(662), - [anon_sym_char] = ACTIONS(662), - [anon_sym_as] = ACTIONS(662), - [anon_sym_const] = ACTIONS(662), - [anon_sym_default] = ACTIONS(662), - [anon_sym_union] = ACTIONS(662), - [anon_sym_POUND] = ACTIONS(660), - [anon_sym_EQ] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(660), - [anon_sym_ref] = ACTIONS(662), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_COLON_COLON] = ACTIONS(660), - [anon_sym__] = ACTIONS(662), - [anon_sym_AMP] = ACTIONS(662), - [anon_sym_DOT_DOT_DOT] = ACTIONS(660), - [sym_mutable_specifier] = ACTIONS(662), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_DOT_DOT_EQ] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(660), - [anon_sym_PIPE_PIPE] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(662), - [anon_sym_CARET] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(660), - [anon_sym_LT_LT] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_SLASH] = ACTIONS(662), - [anon_sym_PERCENT] = ACTIONS(662), - [anon_sym_PLUS_EQ] = ACTIONS(660), - [anon_sym_DASH_EQ] = ACTIONS(660), - [anon_sym_STAR_EQ] = ACTIONS(660), - [anon_sym_SLASH_EQ] = ACTIONS(660), - [anon_sym_PERCENT_EQ] = ACTIONS(660), - [anon_sym_AMP_EQ] = ACTIONS(660), - [anon_sym_PIPE_EQ] = ACTIONS(660), - [anon_sym_CARET_EQ] = ACTIONS(660), - [anon_sym_LT_LT_EQ] = ACTIONS(660), - [anon_sym_GT_GT_EQ] = ACTIONS(660), - [anon_sym_DOT] = ACTIONS(662), - [sym_integer_literal] = ACTIONS(660), - [aux_sym_string_literal_token1] = ACTIONS(660), - [sym_char_literal] = ACTIONS(660), - [anon_sym_true] = ACTIONS(662), - [anon_sym_false] = ACTIONS(662), + [sym_identifier] = ACTIONS(666), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_QMARK] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_as] = ACTIONS(666), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(666), + [anon_sym_union] = ACTIONS(666), + [anon_sym_POUND] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(664), + [anon_sym_ref] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(666), + [anon_sym_COLON_COLON] = ACTIONS(664), + [anon_sym__] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_mutable_specifier] = ACTIONS(666), + [anon_sym_DOT_DOT] = ACTIONS(666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(664), + [anon_sym_PIPE_PIPE] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(664), + [anon_sym_BANG_EQ] = ACTIONS(664), + [anon_sym_LT_EQ] = ACTIONS(664), + [anon_sym_GT_EQ] = ACTIONS(664), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_PLUS_EQ] = ACTIONS(664), + [anon_sym_DASH_EQ] = ACTIONS(664), + [anon_sym_STAR_EQ] = ACTIONS(664), + [anon_sym_SLASH_EQ] = ACTIONS(664), + [anon_sym_PERCENT_EQ] = ACTIONS(664), + [anon_sym_AMP_EQ] = ACTIONS(664), + [anon_sym_PIPE_EQ] = ACTIONS(664), + [anon_sym_CARET_EQ] = ACTIONS(664), + [anon_sym_LT_LT_EQ] = ACTIONS(664), + [anon_sym_GT_GT_EQ] = ACTIONS(664), + [anon_sym_DOT] = ACTIONS(666), + [sym_integer_literal] = ACTIONS(664), + [aux_sym_string_literal_token1] = ACTIONS(664), + [sym_char_literal] = ACTIONS(664), + [anon_sym_true] = ACTIONS(666), + [anon_sym_false] = ACTIONS(666), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(662), - [sym_super] = ACTIONS(662), - [sym_crate] = ACTIONS(662), - [sym_metavariable] = ACTIONS(660), - [sym_raw_string_literal] = ACTIONS(660), - [sym_float_literal] = ACTIONS(660), + [sym_self] = ACTIONS(666), + [sym_super] = ACTIONS(666), + [sym_crate] = ACTIONS(666), + [sym_metavariable] = ACTIONS(664), + [sym_raw_string_literal] = ACTIONS(664), + [sym_float_literal] = ACTIONS(664), [sym_block_comment] = ACTIONS(3), }, [256] = { - [sym_identifier] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_RBRACE] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(668), - [anon_sym_u8] = ACTIONS(670), - [anon_sym_i8] = ACTIONS(670), - [anon_sym_u16] = ACTIONS(670), - [anon_sym_i16] = ACTIONS(670), - [anon_sym_u32] = ACTIONS(670), - [anon_sym_i32] = ACTIONS(670), - [anon_sym_u64] = ACTIONS(670), - [anon_sym_i64] = ACTIONS(670), - [anon_sym_u128] = ACTIONS(670), - [anon_sym_i128] = ACTIONS(670), - [anon_sym_isize] = ACTIONS(670), - [anon_sym_usize] = ACTIONS(670), - [anon_sym_f32] = ACTIONS(670), - [anon_sym_f64] = ACTIONS(670), - [anon_sym_bool] = ACTIONS(670), - [anon_sym_str] = ACTIONS(670), - [anon_sym_char] = ACTIONS(670), - [anon_sym_as] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_union] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(668), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(668), - [anon_sym_ref] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_COLON_COLON] = ACTIONS(668), - [anon_sym__] = ACTIONS(670), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [sym_mutable_specifier] = ACTIONS(670), - [anon_sym_DOT_DOT] = ACTIONS(670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_AMP_AMP] = ACTIONS(668), - [anon_sym_PIPE_PIPE] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(668), - [anon_sym_BANG_EQ] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(668), - [anon_sym_LT_LT] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(670), - [anon_sym_PLUS_EQ] = ACTIONS(668), - [anon_sym_DASH_EQ] = ACTIONS(668), - [anon_sym_STAR_EQ] = ACTIONS(668), - [anon_sym_SLASH_EQ] = ACTIONS(668), - [anon_sym_PERCENT_EQ] = ACTIONS(668), - [anon_sym_AMP_EQ] = ACTIONS(668), - [anon_sym_PIPE_EQ] = ACTIONS(668), - [anon_sym_CARET_EQ] = ACTIONS(668), - [anon_sym_LT_LT_EQ] = ACTIONS(668), - [anon_sym_GT_GT_EQ] = ACTIONS(668), - [anon_sym_DOT] = ACTIONS(670), - [sym_integer_literal] = ACTIONS(668), - [aux_sym_string_literal_token1] = ACTIONS(668), - [sym_char_literal] = ACTIONS(668), - [anon_sym_true] = ACTIONS(670), - [anon_sym_false] = ACTIONS(670), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2016), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2013), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_type_binding] = STATE(2367), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [sym_block] = STATE(2367), + [sym__literal] = STATE(2367), + [sym_string_literal] = STATE(2253), + [sym_boolean_literal] = STATE(2253), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(920), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(920), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(670), - [sym_super] = ACTIONS(670), - [sym_crate] = ACTIONS(670), - [sym_metavariable] = ACTIONS(668), - [sym_raw_string_literal] = ACTIONS(668), - [sym_float_literal] = ACTIONS(668), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_raw_string_literal] = ACTIONS(920), + [sym_float_literal] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, [257] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1808), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2093), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [sym_block] = STATE(2093), - [sym__literal] = STATE(2093), - [sym_string_literal] = STATE(2318), - [sym_boolean_literal] = STATE(2318), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1839), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(1838), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_type_binding] = STATE(1983), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [sym_block] = STATE(1983), + [sym__literal] = STATE(1983), + [sym_string_literal] = STATE(2253), + [sym_boolean_literal] = STATE(2253), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(900), [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_LBRACE] = ACTIONS(904), @@ -43475,33 +46205,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [258] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1897), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2225), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [sym_block] = STATE(2225), - [sym__literal] = STATE(2225), - [sym_string_literal] = STATE(2318), - [sym_boolean_literal] = STATE(2318), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2016), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2013), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_type_binding] = STATE(2367), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [sym_block] = STATE(2367), + [sym__literal] = STATE(2367), + [sym_string_literal] = STATE(2253), + [sym_boolean_literal] = STATE(2253), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(900), [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_LBRACE] = ACTIONS(904), @@ -43554,33 +46284,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [259] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1803), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1802), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(1999), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [sym_block] = STATE(1999), - [sym__literal] = STATE(1999), - [sym_string_literal] = STATE(2318), - [sym_boolean_literal] = STATE(2318), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1861), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_type_binding] = STATE(2125), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [sym_block] = STATE(2125), + [sym__literal] = STATE(2125), + [sym_string_literal] = STATE(2253), + [sym_boolean_literal] = STATE(2253), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(900), [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_LBRACE] = ACTIONS(904), @@ -43633,315 +46363,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [260] = { - [sym_empty_statement] = STATE(265), - [sym_macro_definition] = STATE(265), - [sym_attribute_item] = STATE(265), - [sym_inner_attribute_item] = STATE(265), - [sym_mod_item] = STATE(265), - [sym_foreign_mod_item] = STATE(265), - [sym_struct_item] = STATE(265), - [sym_union_item] = STATE(265), - [sym_enum_item] = STATE(265), - [sym_extern_crate_declaration] = STATE(265), - [sym_const_item] = STATE(265), - [sym_static_item] = STATE(265), - [sym_type_item] = STATE(265), - [sym_function_item] = STATE(265), - [sym_function_signature_item] = STATE(265), - [sym_function_modifiers] = STATE(2563), - [sym_impl_item] = STATE(265), - [sym_trait_item] = STATE(265), - [sym_associated_type] = STATE(265), - [sym_let_declaration] = STATE(265), - [sym_use_declaration] = STATE(265), - [sym_extern_modifier] = STATE(1518), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2374), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(2286), - [aux_sym_declaration_list_repeat1] = STATE(265), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_empty_statement] = STATE(260), + [sym_macro_definition] = STATE(260), + [sym_attribute_item] = STATE(260), + [sym_inner_attribute_item] = STATE(260), + [sym_mod_item] = STATE(260), + [sym_foreign_mod_item] = STATE(260), + [sym_struct_item] = STATE(260), + [sym_union_item] = STATE(260), + [sym_enum_item] = STATE(260), + [sym_extern_crate_declaration] = STATE(260), + [sym_const_item] = STATE(260), + [sym_static_item] = STATE(260), + [sym_type_item] = STATE(260), + [sym_function_item] = STATE(260), + [sym_function_signature_item] = STATE(260), + [sym_function_modifiers] = STATE(2611), + [sym_impl_item] = STATE(260), + [sym_trait_item] = STATE(260), + [sym_associated_type] = STATE(260), + [sym_let_declaration] = STATE(260), + [sym_use_declaration] = STATE(260), + [sym_extern_modifier] = STATE(1570), + [sym_visibility_modifier] = STATE(1387), + [sym_bracketed_type] = STATE(2426), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_macro_invocation] = STATE(260), + [sym_scoped_identifier] = STATE(2258), + [aux_sym_declaration_list_repeat1] = STATE(260), + [aux_sym_function_modifiers_repeat1] = STATE(1584), [sym_identifier] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_macro_rules_BANG] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_u8] = ACTIONS(944), - [anon_sym_i8] = ACTIONS(944), - [anon_sym_u16] = ACTIONS(944), - [anon_sym_i16] = ACTIONS(944), - [anon_sym_u32] = ACTIONS(944), - [anon_sym_i32] = ACTIONS(944), - [anon_sym_u64] = ACTIONS(944), - [anon_sym_i64] = ACTIONS(944), - [anon_sym_u128] = ACTIONS(944), - [anon_sym_i128] = ACTIONS(944), - [anon_sym_isize] = ACTIONS(944), - [anon_sym_usize] = ACTIONS(944), - [anon_sym_f32] = ACTIONS(944), - [anon_sym_f64] = ACTIONS(944), - [anon_sym_bool] = ACTIONS(944), - [anon_sym_str] = ACTIONS(944), - [anon_sym_char] = ACTIONS(944), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(946), - [anon_sym_default] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_fn] = ACTIONS(952), - [anon_sym_impl] = ACTIONS(954), - [anon_sym_let] = ACTIONS(956), - [anon_sym_mod] = ACTIONS(958), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_trait] = ACTIONS(964), - [anon_sym_type] = ACTIONS(966), - [anon_sym_union] = ACTIONS(968), - [anon_sym_unsafe] = ACTIONS(970), - [anon_sym_use] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(978), - [sym_super] = ACTIONS(978), - [sym_crate] = ACTIONS(980), - [sym_metavariable] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_macro_rules_BANG] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(945), + [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_async] = ACTIONS(950), + [anon_sym_const] = ACTIONS(953), + [anon_sym_default] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(959), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_impl] = ACTIONS(965), + [anon_sym_let] = ACTIONS(968), + [anon_sym_mod] = ACTIONS(971), + [anon_sym_pub] = ACTIONS(974), + [anon_sym_static] = ACTIONS(977), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_trait] = ACTIONS(983), + [anon_sym_type] = ACTIONS(986), + [anon_sym_union] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(992), + [anon_sym_use] = ACTIONS(995), + [anon_sym_POUND] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(1007), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1010), + [sym_super] = ACTIONS(1010), + [sym_crate] = ACTIONS(1013), + [sym_metavariable] = ACTIONS(1016), [sym_block_comment] = ACTIONS(3), }, [261] = { - [sym_empty_statement] = STATE(262), - [sym_macro_definition] = STATE(262), - [sym_attribute_item] = STATE(262), - [sym_inner_attribute_item] = STATE(262), - [sym_mod_item] = STATE(262), - [sym_foreign_mod_item] = STATE(262), - [sym_struct_item] = STATE(262), - [sym_union_item] = STATE(262), - [sym_enum_item] = STATE(262), - [sym_extern_crate_declaration] = STATE(262), - [sym_const_item] = STATE(262), - [sym_static_item] = STATE(262), - [sym_type_item] = STATE(262), - [sym_function_item] = STATE(262), - [sym_function_signature_item] = STATE(262), - [sym_function_modifiers] = STATE(2563), - [sym_impl_item] = STATE(262), - [sym_trait_item] = STATE(262), - [sym_associated_type] = STATE(262), - [sym_let_declaration] = STATE(262), - [sym_use_declaration] = STATE(262), - [sym_extern_modifier] = STATE(1518), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2374), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_macro_invocation] = STATE(262), - [sym_scoped_identifier] = STATE(2286), - [aux_sym_declaration_list_repeat1] = STATE(262), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_macro_rules_BANG] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_u8] = ACTIONS(944), - [anon_sym_i8] = ACTIONS(944), - [anon_sym_u16] = ACTIONS(944), - [anon_sym_i16] = ACTIONS(944), - [anon_sym_u32] = ACTIONS(944), - [anon_sym_i32] = ACTIONS(944), - [anon_sym_u64] = ACTIONS(944), - [anon_sym_i64] = ACTIONS(944), - [anon_sym_u128] = ACTIONS(944), - [anon_sym_i128] = ACTIONS(944), - [anon_sym_isize] = ACTIONS(944), - [anon_sym_usize] = ACTIONS(944), - [anon_sym_f32] = ACTIONS(944), - [anon_sym_f64] = ACTIONS(944), - [anon_sym_bool] = ACTIONS(944), - [anon_sym_str] = ACTIONS(944), - [anon_sym_char] = ACTIONS(944), + [sym_empty_statement] = STATE(260), + [sym_macro_definition] = STATE(260), + [sym_attribute_item] = STATE(260), + [sym_inner_attribute_item] = STATE(260), + [sym_mod_item] = STATE(260), + [sym_foreign_mod_item] = STATE(260), + [sym_struct_item] = STATE(260), + [sym_union_item] = STATE(260), + [sym_enum_item] = STATE(260), + [sym_extern_crate_declaration] = STATE(260), + [sym_const_item] = STATE(260), + [sym_static_item] = STATE(260), + [sym_type_item] = STATE(260), + [sym_function_item] = STATE(260), + [sym_function_signature_item] = STATE(260), + [sym_function_modifiers] = STATE(2611), + [sym_impl_item] = STATE(260), + [sym_trait_item] = STATE(260), + [sym_associated_type] = STATE(260), + [sym_let_declaration] = STATE(260), + [sym_use_declaration] = STATE(260), + [sym_extern_modifier] = STATE(1570), + [sym_visibility_modifier] = STATE(1387), + [sym_bracketed_type] = STATE(2426), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_macro_invocation] = STATE(260), + [sym_scoped_identifier] = STATE(2258), + [aux_sym_declaration_list_repeat1] = STATE(260), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_macro_rules_BANG] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_u8] = ACTIONS(1027), + [anon_sym_i8] = ACTIONS(1027), + [anon_sym_u16] = ACTIONS(1027), + [anon_sym_i16] = ACTIONS(1027), + [anon_sym_u32] = ACTIONS(1027), + [anon_sym_i32] = ACTIONS(1027), + [anon_sym_u64] = ACTIONS(1027), + [anon_sym_i64] = ACTIONS(1027), + [anon_sym_u128] = ACTIONS(1027), + [anon_sym_i128] = ACTIONS(1027), + [anon_sym_isize] = ACTIONS(1027), + [anon_sym_usize] = ACTIONS(1027), + [anon_sym_f32] = ACTIONS(1027), + [anon_sym_f64] = ACTIONS(1027), + [anon_sym_bool] = ACTIONS(1027), + [anon_sym_str] = ACTIONS(1027), + [anon_sym_char] = ACTIONS(1027), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(946), - [anon_sym_default] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_fn] = ACTIONS(952), - [anon_sym_impl] = ACTIONS(954), - [anon_sym_let] = ACTIONS(956), - [anon_sym_mod] = ACTIONS(958), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_default] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_fn] = ACTIONS(1035), + [anon_sym_impl] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_mod] = ACTIONS(1041), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_trait] = ACTIONS(964), - [anon_sym_type] = ACTIONS(966), - [anon_sym_union] = ACTIONS(968), - [anon_sym_unsafe] = ACTIONS(970), - [anon_sym_use] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1043), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1047), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1051), + [anon_sym_unsafe] = ACTIONS(1053), + [anon_sym_use] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(1057), + [anon_sym_extern] = ACTIONS(1059), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(888), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(978), - [sym_super] = ACTIONS(978), - [sym_crate] = ACTIONS(980), - [sym_metavariable] = ACTIONS(982), + [sym_self] = ACTIONS(1061), + [sym_super] = ACTIONS(1061), + [sym_crate] = ACTIONS(1063), + [sym_metavariable] = ACTIONS(1065), [sym_block_comment] = ACTIONS(3), }, [262] = { - [sym_empty_statement] = STATE(262), - [sym_macro_definition] = STATE(262), - [sym_attribute_item] = STATE(262), - [sym_inner_attribute_item] = STATE(262), - [sym_mod_item] = STATE(262), - [sym_foreign_mod_item] = STATE(262), - [sym_struct_item] = STATE(262), - [sym_union_item] = STATE(262), - [sym_enum_item] = STATE(262), - [sym_extern_crate_declaration] = STATE(262), - [sym_const_item] = STATE(262), - [sym_static_item] = STATE(262), - [sym_type_item] = STATE(262), - [sym_function_item] = STATE(262), - [sym_function_signature_item] = STATE(262), - [sym_function_modifiers] = STATE(2563), - [sym_impl_item] = STATE(262), - [sym_trait_item] = STATE(262), - [sym_associated_type] = STATE(262), - [sym_let_declaration] = STATE(262), - [sym_use_declaration] = STATE(262), - [sym_extern_modifier] = STATE(1518), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2374), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_macro_invocation] = STATE(262), - [sym_scoped_identifier] = STATE(2286), - [aux_sym_declaration_list_repeat1] = STATE(262), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(989), - [anon_sym_macro_rules_BANG] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(995), - [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_async] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1003), - [anon_sym_default] = ACTIONS(1006), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_fn] = ACTIONS(1012), - [anon_sym_impl] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_mod] = ACTIONS(1021), - [anon_sym_pub] = ACTIONS(1024), - [anon_sym_static] = ACTIONS(1027), - [anon_sym_struct] = ACTIONS(1030), - [anon_sym_trait] = ACTIONS(1033), - [anon_sym_type] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1039), - [anon_sym_unsafe] = ACTIONS(1042), - [anon_sym_use] = ACTIONS(1045), - [anon_sym_POUND] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1051), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_COLON_COLON] = ACTIONS(1057), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1060), - [sym_super] = ACTIONS(1060), + [sym_empty_statement] = STATE(263), + [sym_macro_definition] = STATE(263), + [sym_attribute_item] = STATE(263), + [sym_inner_attribute_item] = STATE(263), + [sym_mod_item] = STATE(263), + [sym_foreign_mod_item] = STATE(263), + [sym_struct_item] = STATE(263), + [sym_union_item] = STATE(263), + [sym_enum_item] = STATE(263), + [sym_extern_crate_declaration] = STATE(263), + [sym_const_item] = STATE(263), + [sym_static_item] = STATE(263), + [sym_type_item] = STATE(263), + [sym_function_item] = STATE(263), + [sym_function_signature_item] = STATE(263), + [sym_function_modifiers] = STATE(2611), + [sym_impl_item] = STATE(263), + [sym_trait_item] = STATE(263), + [sym_associated_type] = STATE(263), + [sym_let_declaration] = STATE(263), + [sym_use_declaration] = STATE(263), + [sym_extern_modifier] = STATE(1570), + [sym_visibility_modifier] = STATE(1387), + [sym_bracketed_type] = STATE(2426), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_macro_invocation] = STATE(263), + [sym_scoped_identifier] = STATE(2258), + [aux_sym_declaration_list_repeat1] = STATE(263), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_macro_rules_BANG] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1067), + [anon_sym_u8] = ACTIONS(1027), + [anon_sym_i8] = ACTIONS(1027), + [anon_sym_u16] = ACTIONS(1027), + [anon_sym_i16] = ACTIONS(1027), + [anon_sym_u32] = ACTIONS(1027), + [anon_sym_i32] = ACTIONS(1027), + [anon_sym_u64] = ACTIONS(1027), + [anon_sym_i64] = ACTIONS(1027), + [anon_sym_u128] = ACTIONS(1027), + [anon_sym_i128] = ACTIONS(1027), + [anon_sym_isize] = ACTIONS(1027), + [anon_sym_usize] = ACTIONS(1027), + [anon_sym_f32] = ACTIONS(1027), + [anon_sym_f64] = ACTIONS(1027), + [anon_sym_bool] = ACTIONS(1027), + [anon_sym_str] = ACTIONS(1027), + [anon_sym_char] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_default] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_fn] = ACTIONS(1035), + [anon_sym_impl] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(1043), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1047), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1051), + [anon_sym_unsafe] = ACTIONS(1053), + [anon_sym_use] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(1057), + [anon_sym_extern] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(888), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1061), + [sym_super] = ACTIONS(1061), [sym_crate] = ACTIONS(1063), - [sym_metavariable] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1065), [sym_block_comment] = ACTIONS(3), }, [263] = { - [sym_empty_statement] = STATE(261), - [sym_macro_definition] = STATE(261), - [sym_attribute_item] = STATE(261), - [sym_inner_attribute_item] = STATE(261), - [sym_mod_item] = STATE(261), - [sym_foreign_mod_item] = STATE(261), - [sym_struct_item] = STATE(261), - [sym_union_item] = STATE(261), - [sym_enum_item] = STATE(261), - [sym_extern_crate_declaration] = STATE(261), - [sym_const_item] = STATE(261), - [sym_static_item] = STATE(261), - [sym_type_item] = STATE(261), - [sym_function_item] = STATE(261), - [sym_function_signature_item] = STATE(261), - [sym_function_modifiers] = STATE(2563), - [sym_impl_item] = STATE(261), - [sym_trait_item] = STATE(261), - [sym_associated_type] = STATE(261), - [sym_let_declaration] = STATE(261), - [sym_use_declaration] = STATE(261), - [sym_extern_modifier] = STATE(1518), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2374), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_macro_invocation] = STATE(261), - [sym_scoped_identifier] = STATE(2286), - [aux_sym_declaration_list_repeat1] = STATE(261), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_macro_rules_BANG] = ACTIONS(940), + [sym_empty_statement] = STATE(260), + [sym_macro_definition] = STATE(260), + [sym_attribute_item] = STATE(260), + [sym_inner_attribute_item] = STATE(260), + [sym_mod_item] = STATE(260), + [sym_foreign_mod_item] = STATE(260), + [sym_struct_item] = STATE(260), + [sym_union_item] = STATE(260), + [sym_enum_item] = STATE(260), + [sym_extern_crate_declaration] = STATE(260), + [sym_const_item] = STATE(260), + [sym_static_item] = STATE(260), + [sym_type_item] = STATE(260), + [sym_function_item] = STATE(260), + [sym_function_signature_item] = STATE(260), + [sym_function_modifiers] = STATE(2611), + [sym_impl_item] = STATE(260), + [sym_trait_item] = STATE(260), + [sym_associated_type] = STATE(260), + [sym_let_declaration] = STATE(260), + [sym_use_declaration] = STATE(260), + [sym_extern_modifier] = STATE(1570), + [sym_visibility_modifier] = STATE(1387), + [sym_bracketed_type] = STATE(2426), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_macro_invocation] = STATE(260), + [sym_scoped_identifier] = STATE(2258), + [aux_sym_declaration_list_repeat1] = STATE(260), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_macro_rules_BANG] = ACTIONS(1023), [anon_sym_RBRACE] = ACTIONS(1069), - [anon_sym_u8] = ACTIONS(944), - [anon_sym_i8] = ACTIONS(944), - [anon_sym_u16] = ACTIONS(944), - [anon_sym_i16] = ACTIONS(944), - [anon_sym_u32] = ACTIONS(944), - [anon_sym_i32] = ACTIONS(944), - [anon_sym_u64] = ACTIONS(944), - [anon_sym_i64] = ACTIONS(944), - [anon_sym_u128] = ACTIONS(944), - [anon_sym_i128] = ACTIONS(944), - [anon_sym_isize] = ACTIONS(944), - [anon_sym_usize] = ACTIONS(944), - [anon_sym_f32] = ACTIONS(944), - [anon_sym_f64] = ACTIONS(944), - [anon_sym_bool] = ACTIONS(944), - [anon_sym_str] = ACTIONS(944), - [anon_sym_char] = ACTIONS(944), + [anon_sym_u8] = ACTIONS(1027), + [anon_sym_i8] = ACTIONS(1027), + [anon_sym_u16] = ACTIONS(1027), + [anon_sym_i16] = ACTIONS(1027), + [anon_sym_u32] = ACTIONS(1027), + [anon_sym_i32] = ACTIONS(1027), + [anon_sym_u64] = ACTIONS(1027), + [anon_sym_i64] = ACTIONS(1027), + [anon_sym_u128] = ACTIONS(1027), + [anon_sym_i128] = ACTIONS(1027), + [anon_sym_isize] = ACTIONS(1027), + [anon_sym_usize] = ACTIONS(1027), + [anon_sym_f32] = ACTIONS(1027), + [anon_sym_f64] = ACTIONS(1027), + [anon_sym_bool] = ACTIONS(1027), + [anon_sym_str] = ACTIONS(1027), + [anon_sym_char] = ACTIONS(1027), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(946), - [anon_sym_default] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_fn] = ACTIONS(952), - [anon_sym_impl] = ACTIONS(954), - [anon_sym_let] = ACTIONS(956), - [anon_sym_mod] = ACTIONS(958), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_default] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_fn] = ACTIONS(1035), + [anon_sym_impl] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_mod] = ACTIONS(1041), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_trait] = ACTIONS(964), - [anon_sym_type] = ACTIONS(966), - [anon_sym_union] = ACTIONS(968), - [anon_sym_unsafe] = ACTIONS(970), - [anon_sym_use] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1043), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1047), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1051), + [anon_sym_unsafe] = ACTIONS(1053), + [anon_sym_use] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(1057), + [anon_sym_extern] = ACTIONS(1059), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(888), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(978), - [sym_super] = ACTIONS(978), - [sym_crate] = ACTIONS(980), - [sym_metavariable] = ACTIONS(982), + [sym_self] = ACTIONS(1061), + [sym_super] = ACTIONS(1061), + [sym_crate] = ACTIONS(1063), + [sym_metavariable] = ACTIONS(1065), [sym_block_comment] = ACTIONS(3), }, [264] = { @@ -43950,8 +46680,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_token_binding_pattern] = STATE(264), [sym_token_repetition_pattern] = STATE(264), [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), [aux_sym_token_tree_pattern_repeat1] = STATE(264), [sym_identifier] = ACTIONS(1071), [anon_sym_LPAREN] = ACTIONS(1074), @@ -44023,81 +46753,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [265] = { - [sym_empty_statement] = STATE(262), - [sym_macro_definition] = STATE(262), - [sym_attribute_item] = STATE(262), - [sym_inner_attribute_item] = STATE(262), - [sym_mod_item] = STATE(262), - [sym_foreign_mod_item] = STATE(262), - [sym_struct_item] = STATE(262), - [sym_union_item] = STATE(262), - [sym_enum_item] = STATE(262), - [sym_extern_crate_declaration] = STATE(262), - [sym_const_item] = STATE(262), - [sym_static_item] = STATE(262), - [sym_type_item] = STATE(262), - [sym_function_item] = STATE(262), - [sym_function_signature_item] = STATE(262), - [sym_function_modifiers] = STATE(2563), - [sym_impl_item] = STATE(262), - [sym_trait_item] = STATE(262), - [sym_associated_type] = STATE(262), - [sym_let_declaration] = STATE(262), - [sym_use_declaration] = STATE(262), - [sym_extern_modifier] = STATE(1518), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2374), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_macro_invocation] = STATE(262), - [sym_scoped_identifier] = STATE(2286), - [aux_sym_declaration_list_repeat1] = STATE(262), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_macro_rules_BANG] = ACTIONS(940), + [sym_empty_statement] = STATE(261), + [sym_macro_definition] = STATE(261), + [sym_attribute_item] = STATE(261), + [sym_inner_attribute_item] = STATE(261), + [sym_mod_item] = STATE(261), + [sym_foreign_mod_item] = STATE(261), + [sym_struct_item] = STATE(261), + [sym_union_item] = STATE(261), + [sym_enum_item] = STATE(261), + [sym_extern_crate_declaration] = STATE(261), + [sym_const_item] = STATE(261), + [sym_static_item] = STATE(261), + [sym_type_item] = STATE(261), + [sym_function_item] = STATE(261), + [sym_function_signature_item] = STATE(261), + [sym_function_modifiers] = STATE(2611), + [sym_impl_item] = STATE(261), + [sym_trait_item] = STATE(261), + [sym_associated_type] = STATE(261), + [sym_let_declaration] = STATE(261), + [sym_use_declaration] = STATE(261), + [sym_extern_modifier] = STATE(1570), + [sym_visibility_modifier] = STATE(1387), + [sym_bracketed_type] = STATE(2426), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_macro_invocation] = STATE(261), + [sym_scoped_identifier] = STATE(2258), + [aux_sym_declaration_list_repeat1] = STATE(261), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_macro_rules_BANG] = ACTIONS(1023), [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_u8] = ACTIONS(944), - [anon_sym_i8] = ACTIONS(944), - [anon_sym_u16] = ACTIONS(944), - [anon_sym_i16] = ACTIONS(944), - [anon_sym_u32] = ACTIONS(944), - [anon_sym_i32] = ACTIONS(944), - [anon_sym_u64] = ACTIONS(944), - [anon_sym_i64] = ACTIONS(944), - [anon_sym_u128] = ACTIONS(944), - [anon_sym_i128] = ACTIONS(944), - [anon_sym_isize] = ACTIONS(944), - [anon_sym_usize] = ACTIONS(944), - [anon_sym_f32] = ACTIONS(944), - [anon_sym_f64] = ACTIONS(944), - [anon_sym_bool] = ACTIONS(944), - [anon_sym_str] = ACTIONS(944), - [anon_sym_char] = ACTIONS(944), + [anon_sym_u8] = ACTIONS(1027), + [anon_sym_i8] = ACTIONS(1027), + [anon_sym_u16] = ACTIONS(1027), + [anon_sym_i16] = ACTIONS(1027), + [anon_sym_u32] = ACTIONS(1027), + [anon_sym_i32] = ACTIONS(1027), + [anon_sym_u64] = ACTIONS(1027), + [anon_sym_i64] = ACTIONS(1027), + [anon_sym_u128] = ACTIONS(1027), + [anon_sym_i128] = ACTIONS(1027), + [anon_sym_isize] = ACTIONS(1027), + [anon_sym_usize] = ACTIONS(1027), + [anon_sym_f32] = ACTIONS(1027), + [anon_sym_f64] = ACTIONS(1027), + [anon_sym_bool] = ACTIONS(1027), + [anon_sym_str] = ACTIONS(1027), + [anon_sym_char] = ACTIONS(1027), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(946), - [anon_sym_default] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_fn] = ACTIONS(952), - [anon_sym_impl] = ACTIONS(954), - [anon_sym_let] = ACTIONS(956), - [anon_sym_mod] = ACTIONS(958), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_default] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_fn] = ACTIONS(1035), + [anon_sym_impl] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_mod] = ACTIONS(1041), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_trait] = ACTIONS(964), - [anon_sym_type] = ACTIONS(966), - [anon_sym_union] = ACTIONS(968), - [anon_sym_unsafe] = ACTIONS(970), - [anon_sym_use] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1043), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1047), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1051), + [anon_sym_unsafe] = ACTIONS(1053), + [anon_sym_use] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(1057), + [anon_sym_extern] = ACTIONS(1059), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(888), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(978), - [sym_super] = ACTIONS(978), - [sym_crate] = ACTIONS(980), - [sym_metavariable] = ACTIONS(982), + [sym_self] = ACTIONS(1061), + [sym_super] = ACTIONS(1061), + [sym_crate] = ACTIONS(1063), + [sym_metavariable] = ACTIONS(1065), [sym_block_comment] = ACTIONS(3), }, [266] = { @@ -46719,1555 +49449,1810 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [300] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_arm] = STATE(494), - [sym_last_match_arm] = STATE(2442), - [sym_match_pattern] = STATE(2369), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_identifier] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_macro_rules_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_u8] = ACTIONS(1242), + [anon_sym_i8] = ACTIONS(1242), + [anon_sym_u16] = ACTIONS(1242), + [anon_sym_i16] = ACTIONS(1242), + [anon_sym_u32] = ACTIONS(1242), + [anon_sym_i32] = ACTIONS(1242), + [anon_sym_u64] = ACTIONS(1242), + [anon_sym_i64] = ACTIONS(1242), + [anon_sym_u128] = ACTIONS(1242), + [anon_sym_i128] = ACTIONS(1242), + [anon_sym_isize] = ACTIONS(1242), + [anon_sym_usize] = ACTIONS(1242), + [anon_sym_f32] = ACTIONS(1242), + [anon_sym_f64] = ACTIONS(1242), + [anon_sym_bool] = ACTIONS(1242), + [anon_sym_str] = ACTIONS(1242), + [anon_sym_char] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_fn] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_impl] = ACTIONS(1242), + [anon_sym_let] = ACTIONS(1242), + [anon_sym_loop] = ACTIONS(1242), + [anon_sym_match] = ACTIONS(1242), + [anon_sym_mod] = ACTIONS(1242), + [anon_sym_pub] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_struct] = ACTIONS(1242), + [anon_sym_trait] = ACTIONS(1242), + [anon_sym_type] = ACTIONS(1242), + [anon_sym_union] = ACTIONS(1242), + [anon_sym_unsafe] = ACTIONS(1242), + [anon_sym_use] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1242), + [anon_sym_LT] = ACTIONS(1240), + [anon_sym_COLON_COLON] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym_DOT_DOT] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_yield] = ACTIONS(1242), + [anon_sym_move] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1240), + [aux_sym_string_literal_token1] = ACTIONS(1240), + [sym_char_literal] = ACTIONS(1240), + [anon_sym_true] = ACTIONS(1242), + [anon_sym_false] = ACTIONS(1242), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1242), + [sym_super] = ACTIONS(1242), + [sym_crate] = ACTIONS(1242), + [sym_metavariable] = ACTIONS(1240), + [sym_raw_string_literal] = ACTIONS(1240), + [sym_float_literal] = ACTIONS(1240), [sym_block_comment] = ACTIONS(3), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(1262), - [sym_identifier] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_macro_rules_BANG] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1264), - [anon_sym_i8] = ACTIONS(1264), - [anon_sym_u16] = ACTIONS(1264), - [anon_sym_i16] = ACTIONS(1264), - [anon_sym_u32] = ACTIONS(1264), - [anon_sym_i32] = ACTIONS(1264), - [anon_sym_u64] = ACTIONS(1264), - [anon_sym_i64] = ACTIONS(1264), - [anon_sym_u128] = ACTIONS(1264), - [anon_sym_i128] = ACTIONS(1264), - [anon_sym_isize] = ACTIONS(1264), - [anon_sym_usize] = ACTIONS(1264), - [anon_sym_f32] = ACTIONS(1264), - [anon_sym_f64] = ACTIONS(1264), - [anon_sym_bool] = ACTIONS(1264), - [anon_sym_str] = ACTIONS(1264), - [anon_sym_char] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_async] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_fn] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_impl] = ACTIONS(1264), - [anon_sym_let] = ACTIONS(1264), - [anon_sym_loop] = ACTIONS(1264), - [anon_sym_match] = ACTIONS(1264), - [anon_sym_mod] = ACTIONS(1264), - [anon_sym_pub] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_trait] = ACTIONS(1264), - [anon_sym_type] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_unsafe] = ACTIONS(1264), - [anon_sym_use] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1262), - [anon_sym_COLON_COLON] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_DOT_DOT] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1262), - [anon_sym_yield] = ACTIONS(1264), - [anon_sym_move] = ACTIONS(1264), - [sym_integer_literal] = ACTIONS(1262), - [aux_sym_string_literal_token1] = ACTIONS(1262), - [sym_char_literal] = ACTIONS(1262), - [anon_sym_true] = ACTIONS(1264), - [anon_sym_false] = ACTIONS(1264), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1264), - [sym_super] = ACTIONS(1264), - [sym_crate] = ACTIONS(1264), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1262), - [sym_float_literal] = ACTIONS(1262), + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_identifier] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym_macro_rules_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_STAR] = ACTIONS(1244), + [anon_sym_u8] = ACTIONS(1246), + [anon_sym_i8] = ACTIONS(1246), + [anon_sym_u16] = ACTIONS(1246), + [anon_sym_i16] = ACTIONS(1246), + [anon_sym_u32] = ACTIONS(1246), + [anon_sym_i32] = ACTIONS(1246), + [anon_sym_u64] = ACTIONS(1246), + [anon_sym_i64] = ACTIONS(1246), + [anon_sym_u128] = ACTIONS(1246), + [anon_sym_i128] = ACTIONS(1246), + [anon_sym_isize] = ACTIONS(1246), + [anon_sym_usize] = ACTIONS(1246), + [anon_sym_f32] = ACTIONS(1246), + [anon_sym_f64] = ACTIONS(1246), + [anon_sym_bool] = ACTIONS(1246), + [anon_sym_str] = ACTIONS(1246), + [anon_sym_char] = ACTIONS(1246), + [anon_sym_SQUOTE] = ACTIONS(1246), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_fn] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_impl] = ACTIONS(1246), + [anon_sym_let] = ACTIONS(1246), + [anon_sym_loop] = ACTIONS(1246), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_mod] = ACTIONS(1246), + [anon_sym_pub] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_trait] = ACTIONS(1246), + [anon_sym_type] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_unsafe] = ACTIONS(1246), + [anon_sym_use] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_POUND] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym_LT] = ACTIONS(1244), + [anon_sym_COLON_COLON] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym_DOT_DOT] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_yield] = ACTIONS(1246), + [anon_sym_move] = ACTIONS(1246), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1244), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1246), + [sym_super] = ACTIONS(1246), + [sym_crate] = ACTIONS(1246), + [sym_metavariable] = ACTIONS(1244), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(1266), - [sym_identifier] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_macro_rules_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_RBRACE] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_u8] = ACTIONS(1268), - [anon_sym_i8] = ACTIONS(1268), - [anon_sym_u16] = ACTIONS(1268), - [anon_sym_i16] = ACTIONS(1268), - [anon_sym_u32] = ACTIONS(1268), - [anon_sym_i32] = ACTIONS(1268), - [anon_sym_u64] = ACTIONS(1268), - [anon_sym_i64] = ACTIONS(1268), - [anon_sym_u128] = ACTIONS(1268), - [anon_sym_i128] = ACTIONS(1268), - [anon_sym_isize] = ACTIONS(1268), - [anon_sym_usize] = ACTIONS(1268), - [anon_sym_f32] = ACTIONS(1268), - [anon_sym_f64] = ACTIONS(1268), - [anon_sym_bool] = ACTIONS(1268), - [anon_sym_str] = ACTIONS(1268), - [anon_sym_char] = ACTIONS(1268), - [anon_sym_SQUOTE] = ACTIONS(1268), - [anon_sym_async] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_fn] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_impl] = ACTIONS(1268), - [anon_sym_let] = ACTIONS(1268), - [anon_sym_loop] = ACTIONS(1268), - [anon_sym_match] = ACTIONS(1268), - [anon_sym_mod] = ACTIONS(1268), - [anon_sym_pub] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_trait] = ACTIONS(1268), - [anon_sym_type] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_unsafe] = ACTIONS(1268), - [anon_sym_use] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_POUND] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_DOT_DOT] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_yield] = ACTIONS(1268), - [anon_sym_move] = ACTIONS(1268), - [sym_integer_literal] = ACTIONS(1266), - [aux_sym_string_literal_token1] = ACTIONS(1266), - [sym_char_literal] = ACTIONS(1266), - [anon_sym_true] = ACTIONS(1268), - [anon_sym_false] = ACTIONS(1268), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1268), - [sym_super] = ACTIONS(1268), - [sym_crate] = ACTIONS(1268), - [sym_metavariable] = ACTIONS(1266), - [sym_raw_string_literal] = ACTIONS(1266), - [sym_float_literal] = ACTIONS(1266), + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_identifier] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym_macro_rules_BANG] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_u8] = ACTIONS(1250), + [anon_sym_i8] = ACTIONS(1250), + [anon_sym_u16] = ACTIONS(1250), + [anon_sym_i16] = ACTIONS(1250), + [anon_sym_u32] = ACTIONS(1250), + [anon_sym_i32] = ACTIONS(1250), + [anon_sym_u64] = ACTIONS(1250), + [anon_sym_i64] = ACTIONS(1250), + [anon_sym_u128] = ACTIONS(1250), + [anon_sym_i128] = ACTIONS(1250), + [anon_sym_isize] = ACTIONS(1250), + [anon_sym_usize] = ACTIONS(1250), + [anon_sym_f32] = ACTIONS(1250), + [anon_sym_f64] = ACTIONS(1250), + [anon_sym_bool] = ACTIONS(1250), + [anon_sym_str] = ACTIONS(1250), + [anon_sym_char] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_fn] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_impl] = ACTIONS(1250), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_loop] = ACTIONS(1250), + [anon_sym_match] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1250), + [anon_sym_pub] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_trait] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_unsafe] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_POUND] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym_LT] = ACTIONS(1248), + [anon_sym_COLON_COLON] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_DOT_DOT] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_PIPE] = ACTIONS(1248), + [anon_sym_yield] = ACTIONS(1250), + [anon_sym_move] = ACTIONS(1250), + [sym_integer_literal] = ACTIONS(1248), + [aux_sym_string_literal_token1] = ACTIONS(1248), + [sym_char_literal] = ACTIONS(1248), + [anon_sym_true] = ACTIONS(1250), + [anon_sym_false] = ACTIONS(1250), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1250), + [sym_crate] = ACTIONS(1250), + [sym_metavariable] = ACTIONS(1248), + [sym_raw_string_literal] = ACTIONS(1248), + [sym_float_literal] = ACTIONS(1248), [sym_block_comment] = ACTIONS(3), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_macro_rules_BANG] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_RBRACE] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_u8] = ACTIONS(1272), - [anon_sym_i8] = ACTIONS(1272), - [anon_sym_u16] = ACTIONS(1272), - [anon_sym_i16] = ACTIONS(1272), - [anon_sym_u32] = ACTIONS(1272), - [anon_sym_i32] = ACTIONS(1272), - [anon_sym_u64] = ACTIONS(1272), - [anon_sym_i64] = ACTIONS(1272), - [anon_sym_u128] = ACTIONS(1272), - [anon_sym_i128] = ACTIONS(1272), - [anon_sym_isize] = ACTIONS(1272), - [anon_sym_usize] = ACTIONS(1272), - [anon_sym_f32] = ACTIONS(1272), - [anon_sym_f64] = ACTIONS(1272), - [anon_sym_bool] = ACTIONS(1272), - [anon_sym_str] = ACTIONS(1272), - [anon_sym_char] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_fn] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_impl] = ACTIONS(1272), - [anon_sym_let] = ACTIONS(1272), - [anon_sym_loop] = ACTIONS(1272), - [anon_sym_match] = ACTIONS(1272), - [anon_sym_mod] = ACTIONS(1272), - [anon_sym_pub] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_trait] = ACTIONS(1272), - [anon_sym_type] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_unsafe] = ACTIONS(1272), - [anon_sym_use] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_POUND] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_COLON_COLON] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_yield] = ACTIONS(1272), - [anon_sym_move] = ACTIONS(1272), - [sym_integer_literal] = ACTIONS(1270), - [aux_sym_string_literal_token1] = ACTIONS(1270), - [sym_char_literal] = ACTIONS(1270), - [anon_sym_true] = ACTIONS(1272), - [anon_sym_false] = ACTIONS(1272), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1272), - [sym_super] = ACTIONS(1272), - [sym_crate] = ACTIONS(1272), - [sym_metavariable] = ACTIONS(1270), - [sym_raw_string_literal] = ACTIONS(1270), - [sym_float_literal] = ACTIONS(1270), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_macro_rules_BANG] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u128] = ACTIONS(1254), + [anon_sym_i128] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_str] = ACTIONS(1254), + [anon_sym_char] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_async] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_fn] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_impl] = ACTIONS(1254), + [anon_sym_let] = ACTIONS(1254), + [anon_sym_loop] = ACTIONS(1254), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_mod] = ACTIONS(1254), + [anon_sym_pub] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_trait] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_unsafe] = ACTIONS(1254), + [anon_sym_use] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_POUND] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_move] = ACTIONS(1254), + [sym_integer_literal] = ACTIONS(1252), + [aux_sym_string_literal_token1] = ACTIONS(1252), + [sym_char_literal] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1254), + [sym_super] = ACTIONS(1254), + [sym_crate] = ACTIONS(1254), + [sym_metavariable] = ACTIONS(1252), + [sym_raw_string_literal] = ACTIONS(1252), + [sym_float_literal] = ACTIONS(1252), [sym_block_comment] = ACTIONS(3), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_macro_rules_BANG] = ACTIONS(1274), - [anon_sym_LPAREN] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_u8] = ACTIONS(1276), - [anon_sym_i8] = ACTIONS(1276), - [anon_sym_u16] = ACTIONS(1276), - [anon_sym_i16] = ACTIONS(1276), - [anon_sym_u32] = ACTIONS(1276), - [anon_sym_i32] = ACTIONS(1276), - [anon_sym_u64] = ACTIONS(1276), - [anon_sym_i64] = ACTIONS(1276), - [anon_sym_u128] = ACTIONS(1276), - [anon_sym_i128] = ACTIONS(1276), - [anon_sym_isize] = ACTIONS(1276), - [anon_sym_usize] = ACTIONS(1276), - [anon_sym_f32] = ACTIONS(1276), - [anon_sym_f64] = ACTIONS(1276), - [anon_sym_bool] = ACTIONS(1276), - [anon_sym_str] = ACTIONS(1276), - [anon_sym_char] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_async] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_fn] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_impl] = ACTIONS(1276), - [anon_sym_let] = ACTIONS(1276), - [anon_sym_loop] = ACTIONS(1276), - [anon_sym_match] = ACTIONS(1276), - [anon_sym_mod] = ACTIONS(1276), - [anon_sym_pub] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_trait] = ACTIONS(1276), - [anon_sym_type] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_unsafe] = ACTIONS(1276), - [anon_sym_use] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_POUND] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_DOT_DOT] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_yield] = ACTIONS(1276), - [anon_sym_move] = ACTIONS(1276), - [sym_integer_literal] = ACTIONS(1274), - [aux_sym_string_literal_token1] = ACTIONS(1274), - [sym_char_literal] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1276), - [sym_super] = ACTIONS(1276), - [sym_crate] = ACTIONS(1276), - [sym_metavariable] = ACTIONS(1274), - [sym_raw_string_literal] = ACTIONS(1274), - [sym_float_literal] = ACTIONS(1274), + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_macro_rules_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_RBRACE] = ACTIONS(1256), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_u8] = ACTIONS(1258), + [anon_sym_i8] = ACTIONS(1258), + [anon_sym_u16] = ACTIONS(1258), + [anon_sym_i16] = ACTIONS(1258), + [anon_sym_u32] = ACTIONS(1258), + [anon_sym_i32] = ACTIONS(1258), + [anon_sym_u64] = ACTIONS(1258), + [anon_sym_i64] = ACTIONS(1258), + [anon_sym_u128] = ACTIONS(1258), + [anon_sym_i128] = ACTIONS(1258), + [anon_sym_isize] = ACTIONS(1258), + [anon_sym_usize] = ACTIONS(1258), + [anon_sym_f32] = ACTIONS(1258), + [anon_sym_f64] = ACTIONS(1258), + [anon_sym_bool] = ACTIONS(1258), + [anon_sym_str] = ACTIONS(1258), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_async] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_fn] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_impl] = ACTIONS(1258), + [anon_sym_let] = ACTIONS(1258), + [anon_sym_loop] = ACTIONS(1258), + [anon_sym_match] = ACTIONS(1258), + [anon_sym_mod] = ACTIONS(1258), + [anon_sym_pub] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_trait] = ACTIONS(1258), + [anon_sym_type] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_unsafe] = ACTIONS(1258), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_POUND] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_move] = ACTIONS(1258), + [sym_integer_literal] = ACTIONS(1256), + [aux_sym_string_literal_token1] = ACTIONS(1256), + [sym_char_literal] = ACTIONS(1256), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1258), + [sym_super] = ACTIONS(1258), + [sym_crate] = ACTIONS(1258), + [sym_metavariable] = ACTIONS(1256), + [sym_raw_string_literal] = ACTIONS(1256), + [sym_float_literal] = ACTIONS(1256), [sym_block_comment] = ACTIONS(3), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_macro_rules_BANG] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_u8] = ACTIONS(1280), - [anon_sym_i8] = ACTIONS(1280), - [anon_sym_u16] = ACTIONS(1280), - [anon_sym_i16] = ACTIONS(1280), - [anon_sym_u32] = ACTIONS(1280), - [anon_sym_i32] = ACTIONS(1280), - [anon_sym_u64] = ACTIONS(1280), - [anon_sym_i64] = ACTIONS(1280), - [anon_sym_u128] = ACTIONS(1280), - [anon_sym_i128] = ACTIONS(1280), - [anon_sym_isize] = ACTIONS(1280), - [anon_sym_usize] = ACTIONS(1280), - [anon_sym_f32] = ACTIONS(1280), - [anon_sym_f64] = ACTIONS(1280), - [anon_sym_bool] = ACTIONS(1280), - [anon_sym_str] = ACTIONS(1280), - [anon_sym_char] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_fn] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_impl] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_pub] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_trait] = ACTIONS(1280), - [anon_sym_type] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_unsafe] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_DOT_DOT] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1280), - [anon_sym_move] = ACTIONS(1280), - [sym_integer_literal] = ACTIONS(1278), - [aux_sym_string_literal_token1] = ACTIONS(1278), - [sym_char_literal] = ACTIONS(1278), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1280), - [sym_super] = ACTIONS(1280), - [sym_crate] = ACTIONS(1280), - [sym_metavariable] = ACTIONS(1278), - [sym_raw_string_literal] = ACTIONS(1278), - [sym_float_literal] = ACTIONS(1278), + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_identifier] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym_macro_rules_BANG] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_RBRACE] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_u8] = ACTIONS(1262), + [anon_sym_i8] = ACTIONS(1262), + [anon_sym_u16] = ACTIONS(1262), + [anon_sym_i16] = ACTIONS(1262), + [anon_sym_u32] = ACTIONS(1262), + [anon_sym_i32] = ACTIONS(1262), + [anon_sym_u64] = ACTIONS(1262), + [anon_sym_i64] = ACTIONS(1262), + [anon_sym_u128] = ACTIONS(1262), + [anon_sym_i128] = ACTIONS(1262), + [anon_sym_isize] = ACTIONS(1262), + [anon_sym_usize] = ACTIONS(1262), + [anon_sym_f32] = ACTIONS(1262), + [anon_sym_f64] = ACTIONS(1262), + [anon_sym_bool] = ACTIONS(1262), + [anon_sym_str] = ACTIONS(1262), + [anon_sym_char] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_fn] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_impl] = ACTIONS(1262), + [anon_sym_let] = ACTIONS(1262), + [anon_sym_loop] = ACTIONS(1262), + [anon_sym_match] = ACTIONS(1262), + [anon_sym_mod] = ACTIONS(1262), + [anon_sym_pub] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_trait] = ACTIONS(1262), + [anon_sym_type] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_unsafe] = ACTIONS(1262), + [anon_sym_use] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_POUND] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym_LT] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_DOT_DOT] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PIPE] = ACTIONS(1260), + [anon_sym_yield] = ACTIONS(1262), + [anon_sym_move] = ACTIONS(1262), + [sym_integer_literal] = ACTIONS(1260), + [aux_sym_string_literal_token1] = ACTIONS(1260), + [sym_char_literal] = ACTIONS(1260), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1262), + [sym_super] = ACTIONS(1262), + [sym_crate] = ACTIONS(1262), + [sym_metavariable] = ACTIONS(1260), + [sym_raw_string_literal] = ACTIONS(1260), + [sym_float_literal] = ACTIONS(1260), [sym_block_comment] = ACTIONS(3), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_macro_rules_BANG] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_u8] = ACTIONS(1284), - [anon_sym_i8] = ACTIONS(1284), - [anon_sym_u16] = ACTIONS(1284), - [anon_sym_i16] = ACTIONS(1284), - [anon_sym_u32] = ACTIONS(1284), - [anon_sym_i32] = ACTIONS(1284), - [anon_sym_u64] = ACTIONS(1284), - [anon_sym_i64] = ACTIONS(1284), - [anon_sym_u128] = ACTIONS(1284), - [anon_sym_i128] = ACTIONS(1284), - [anon_sym_isize] = ACTIONS(1284), - [anon_sym_usize] = ACTIONS(1284), - [anon_sym_f32] = ACTIONS(1284), - [anon_sym_f64] = ACTIONS(1284), - [anon_sym_bool] = ACTIONS(1284), - [anon_sym_str] = ACTIONS(1284), - [anon_sym_char] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_fn] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_impl] = ACTIONS(1284), - [anon_sym_let] = ACTIONS(1284), - [anon_sym_loop] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1284), - [anon_sym_mod] = ACTIONS(1284), - [anon_sym_pub] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_trait] = ACTIONS(1284), - [anon_sym_type] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_use] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1282), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_DOT_DOT] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), - [anon_sym_move] = ACTIONS(1284), - [sym_integer_literal] = ACTIONS(1282), - [aux_sym_string_literal_token1] = ACTIONS(1282), - [sym_char_literal] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1284), - [anon_sym_false] = ACTIONS(1284), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1284), - [sym_super] = ACTIONS(1284), - [sym_crate] = ACTIONS(1284), - [sym_metavariable] = ACTIONS(1282), - [sym_raw_string_literal] = ACTIONS(1282), - [sym_float_literal] = ACTIONS(1282), + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym_macro_rules_BANG] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_u8] = ACTIONS(1266), + [anon_sym_i8] = ACTIONS(1266), + [anon_sym_u16] = ACTIONS(1266), + [anon_sym_i16] = ACTIONS(1266), + [anon_sym_u32] = ACTIONS(1266), + [anon_sym_i32] = ACTIONS(1266), + [anon_sym_u64] = ACTIONS(1266), + [anon_sym_i64] = ACTIONS(1266), + [anon_sym_u128] = ACTIONS(1266), + [anon_sym_i128] = ACTIONS(1266), + [anon_sym_isize] = ACTIONS(1266), + [anon_sym_usize] = ACTIONS(1266), + [anon_sym_f32] = ACTIONS(1266), + [anon_sym_f64] = ACTIONS(1266), + [anon_sym_bool] = ACTIONS(1266), + [anon_sym_str] = ACTIONS(1266), + [anon_sym_char] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_fn] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_impl] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_pub] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_trait] = ACTIONS(1266), + [anon_sym_type] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_unsafe] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_POUND] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1264), + [anon_sym_COLON_COLON] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_move] = ACTIONS(1266), + [sym_integer_literal] = ACTIONS(1264), + [aux_sym_string_literal_token1] = ACTIONS(1264), + [sym_char_literal] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1266), + [sym_super] = ACTIONS(1266), + [sym_crate] = ACTIONS(1266), + [sym_metavariable] = ACTIONS(1264), + [sym_raw_string_literal] = ACTIONS(1264), + [sym_float_literal] = ACTIONS(1264), [sym_block_comment] = ACTIONS(3), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_macro_rules_BANG] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_u8] = ACTIONS(1288), - [anon_sym_i8] = ACTIONS(1288), - [anon_sym_u16] = ACTIONS(1288), - [anon_sym_i16] = ACTIONS(1288), - [anon_sym_u32] = ACTIONS(1288), - [anon_sym_i32] = ACTIONS(1288), - [anon_sym_u64] = ACTIONS(1288), - [anon_sym_i64] = ACTIONS(1288), - [anon_sym_u128] = ACTIONS(1288), - [anon_sym_i128] = ACTIONS(1288), - [anon_sym_isize] = ACTIONS(1288), - [anon_sym_usize] = ACTIONS(1288), - [anon_sym_f32] = ACTIONS(1288), - [anon_sym_f64] = ACTIONS(1288), - [anon_sym_bool] = ACTIONS(1288), - [anon_sym_str] = ACTIONS(1288), - [anon_sym_char] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_impl] = ACTIONS(1288), - [anon_sym_let] = ACTIONS(1288), - [anon_sym_loop] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1288), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_pub] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_trait] = ACTIONS(1288), - [anon_sym_type] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_use] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_COLON_COLON] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_yield] = ACTIONS(1288), - [anon_sym_move] = ACTIONS(1288), - [sym_integer_literal] = ACTIONS(1286), - [aux_sym_string_literal_token1] = ACTIONS(1286), - [sym_char_literal] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1288), - [sym_super] = ACTIONS(1288), - [sym_crate] = ACTIONS(1288), - [sym_metavariable] = ACTIONS(1286), - [sym_raw_string_literal] = ACTIONS(1286), - [sym_float_literal] = ACTIONS(1286), + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_identifier] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_macro_rules_BANG] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_u8] = ACTIONS(1270), + [anon_sym_i8] = ACTIONS(1270), + [anon_sym_u16] = ACTIONS(1270), + [anon_sym_i16] = ACTIONS(1270), + [anon_sym_u32] = ACTIONS(1270), + [anon_sym_i32] = ACTIONS(1270), + [anon_sym_u64] = ACTIONS(1270), + [anon_sym_i64] = ACTIONS(1270), + [anon_sym_u128] = ACTIONS(1270), + [anon_sym_i128] = ACTIONS(1270), + [anon_sym_isize] = ACTIONS(1270), + [anon_sym_usize] = ACTIONS(1270), + [anon_sym_f32] = ACTIONS(1270), + [anon_sym_f64] = ACTIONS(1270), + [anon_sym_bool] = ACTIONS(1270), + [anon_sym_str] = ACTIONS(1270), + [anon_sym_char] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_fn] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_impl] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_pub] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_trait] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_POUND] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(1268), + [anon_sym_COLON_COLON] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_DOT_DOT] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_yield] = ACTIONS(1270), + [anon_sym_move] = ACTIONS(1270), + [sym_integer_literal] = ACTIONS(1268), + [aux_sym_string_literal_token1] = ACTIONS(1268), + [sym_char_literal] = ACTIONS(1268), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1270), + [sym_super] = ACTIONS(1270), + [sym_crate] = ACTIONS(1270), + [sym_metavariable] = ACTIONS(1268), + [sym_raw_string_literal] = ACTIONS(1268), + [sym_float_literal] = ACTIONS(1268), [sym_block_comment] = ACTIONS(3), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_macro_rules_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_u8] = ACTIONS(1292), - [anon_sym_i8] = ACTIONS(1292), - [anon_sym_u16] = ACTIONS(1292), - [anon_sym_i16] = ACTIONS(1292), - [anon_sym_u32] = ACTIONS(1292), - [anon_sym_i32] = ACTIONS(1292), - [anon_sym_u64] = ACTIONS(1292), - [anon_sym_i64] = ACTIONS(1292), - [anon_sym_u128] = ACTIONS(1292), - [anon_sym_i128] = ACTIONS(1292), - [anon_sym_isize] = ACTIONS(1292), - [anon_sym_usize] = ACTIONS(1292), - [anon_sym_f32] = ACTIONS(1292), - [anon_sym_f64] = ACTIONS(1292), - [anon_sym_bool] = ACTIONS(1292), - [anon_sym_str] = ACTIONS(1292), - [anon_sym_char] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_async] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1292), - [anon_sym_let] = ACTIONS(1292), - [anon_sym_loop] = ACTIONS(1292), - [anon_sym_match] = ACTIONS(1292), - [anon_sym_mod] = ACTIONS(1292), - [anon_sym_pub] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_trait] = ACTIONS(1292), - [anon_sym_type] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_unsafe] = ACTIONS(1292), - [anon_sym_use] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_COLON_COLON] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_yield] = ACTIONS(1292), - [anon_sym_move] = ACTIONS(1292), - [sym_integer_literal] = ACTIONS(1290), - [aux_sym_string_literal_token1] = ACTIONS(1290), - [sym_char_literal] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1292), - [anon_sym_false] = ACTIONS(1292), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1292), - [sym_super] = ACTIONS(1292), - [sym_crate] = ACTIONS(1292), - [sym_metavariable] = ACTIONS(1290), - [sym_raw_string_literal] = ACTIONS(1290), - [sym_float_literal] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_macro_rules_BANG] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_u8] = ACTIONS(1274), + [anon_sym_i8] = ACTIONS(1274), + [anon_sym_u16] = ACTIONS(1274), + [anon_sym_i16] = ACTIONS(1274), + [anon_sym_u32] = ACTIONS(1274), + [anon_sym_i32] = ACTIONS(1274), + [anon_sym_u64] = ACTIONS(1274), + [anon_sym_i64] = ACTIONS(1274), + [anon_sym_u128] = ACTIONS(1274), + [anon_sym_i128] = ACTIONS(1274), + [anon_sym_isize] = ACTIONS(1274), + [anon_sym_usize] = ACTIONS(1274), + [anon_sym_f32] = ACTIONS(1274), + [anon_sym_f64] = ACTIONS(1274), + [anon_sym_bool] = ACTIONS(1274), + [anon_sym_str] = ACTIONS(1274), + [anon_sym_char] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_async] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_fn] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_impl] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_loop] = ACTIONS(1274), + [anon_sym_match] = ACTIONS(1274), + [anon_sym_mod] = ACTIONS(1274), + [anon_sym_pub] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_trait] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_unsafe] = ACTIONS(1274), + [anon_sym_use] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_POUND] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym_LT] = ACTIONS(1272), + [anon_sym_COLON_COLON] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_yield] = ACTIONS(1274), + [anon_sym_move] = ACTIONS(1274), + [sym_integer_literal] = ACTIONS(1272), + [aux_sym_string_literal_token1] = ACTIONS(1272), + [sym_char_literal] = ACTIONS(1272), + [anon_sym_true] = ACTIONS(1274), + [anon_sym_false] = ACTIONS(1274), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1274), + [sym_super] = ACTIONS(1274), + [sym_crate] = ACTIONS(1274), + [sym_metavariable] = ACTIONS(1272), + [sym_raw_string_literal] = ACTIONS(1272), + [sym_float_literal] = ACTIONS(1272), [sym_block_comment] = ACTIONS(3), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_macro_rules_BANG] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_u8] = ACTIONS(1296), - [anon_sym_i8] = ACTIONS(1296), - [anon_sym_u16] = ACTIONS(1296), - [anon_sym_i16] = ACTIONS(1296), - [anon_sym_u32] = ACTIONS(1296), - [anon_sym_i32] = ACTIONS(1296), - [anon_sym_u64] = ACTIONS(1296), - [anon_sym_i64] = ACTIONS(1296), - [anon_sym_u128] = ACTIONS(1296), - [anon_sym_i128] = ACTIONS(1296), - [anon_sym_isize] = ACTIONS(1296), - [anon_sym_usize] = ACTIONS(1296), - [anon_sym_f32] = ACTIONS(1296), - [anon_sym_f64] = ACTIONS(1296), - [anon_sym_bool] = ACTIONS(1296), - [anon_sym_str] = ACTIONS(1296), - [anon_sym_char] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_async] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_fn] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1296), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_loop] = ACTIONS(1296), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_mod] = ACTIONS(1296), - [anon_sym_pub] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_trait] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1296), - [anon_sym_use] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_COLON_COLON] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_move] = ACTIONS(1296), - [sym_integer_literal] = ACTIONS(1294), - [aux_sym_string_literal_token1] = ACTIONS(1294), - [sym_char_literal] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1296), - [sym_super] = ACTIONS(1296), - [sym_crate] = ACTIONS(1296), - [sym_metavariable] = ACTIONS(1294), - [sym_raw_string_literal] = ACTIONS(1294), - [sym_float_literal] = ACTIONS(1294), + [ts_builtin_sym_end] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym_macro_rules_BANG] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), + [anon_sym_LBRACK] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_u8] = ACTIONS(1278), + [anon_sym_i8] = ACTIONS(1278), + [anon_sym_u16] = ACTIONS(1278), + [anon_sym_i16] = ACTIONS(1278), + [anon_sym_u32] = ACTIONS(1278), + [anon_sym_i32] = ACTIONS(1278), + [anon_sym_u64] = ACTIONS(1278), + [anon_sym_i64] = ACTIONS(1278), + [anon_sym_u128] = ACTIONS(1278), + [anon_sym_i128] = ACTIONS(1278), + [anon_sym_isize] = ACTIONS(1278), + [anon_sym_usize] = ACTIONS(1278), + [anon_sym_f32] = ACTIONS(1278), + [anon_sym_f64] = ACTIONS(1278), + [anon_sym_bool] = ACTIONS(1278), + [anon_sym_str] = ACTIONS(1278), + [anon_sym_char] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_async] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_fn] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_impl] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_loop] = ACTIONS(1278), + [anon_sym_match] = ACTIONS(1278), + [anon_sym_mod] = ACTIONS(1278), + [anon_sym_pub] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_trait] = ACTIONS(1278), + [anon_sym_type] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_unsafe] = ACTIONS(1278), + [anon_sym_use] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_POUND] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym_LT] = ACTIONS(1276), + [anon_sym_COLON_COLON] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PIPE] = ACTIONS(1276), + [anon_sym_yield] = ACTIONS(1278), + [anon_sym_move] = ACTIONS(1278), + [sym_integer_literal] = ACTIONS(1276), + [aux_sym_string_literal_token1] = ACTIONS(1276), + [sym_char_literal] = ACTIONS(1276), + [anon_sym_true] = ACTIONS(1278), + [anon_sym_false] = ACTIONS(1278), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1278), + [sym_super] = ACTIONS(1278), + [sym_crate] = ACTIONS(1278), + [sym_metavariable] = ACTIONS(1276), + [sym_raw_string_literal] = ACTIONS(1276), + [sym_float_literal] = ACTIONS(1276), [sym_block_comment] = ACTIONS(3), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_macro_rules_BANG] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_u8] = ACTIONS(1300), - [anon_sym_i8] = ACTIONS(1300), - [anon_sym_u16] = ACTIONS(1300), - [anon_sym_i16] = ACTIONS(1300), - [anon_sym_u32] = ACTIONS(1300), - [anon_sym_i32] = ACTIONS(1300), - [anon_sym_u64] = ACTIONS(1300), - [anon_sym_i64] = ACTIONS(1300), - [anon_sym_u128] = ACTIONS(1300), - [anon_sym_i128] = ACTIONS(1300), - [anon_sym_isize] = ACTIONS(1300), - [anon_sym_usize] = ACTIONS(1300), - [anon_sym_f32] = ACTIONS(1300), - [anon_sym_f64] = ACTIONS(1300), - [anon_sym_bool] = ACTIONS(1300), - [anon_sym_str] = ACTIONS(1300), - [anon_sym_char] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_async] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_fn] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_impl] = ACTIONS(1300), - [anon_sym_let] = ACTIONS(1300), - [anon_sym_loop] = ACTIONS(1300), - [anon_sym_match] = ACTIONS(1300), - [anon_sym_mod] = ACTIONS(1300), - [anon_sym_pub] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_trait] = ACTIONS(1300), - [anon_sym_type] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_POUND] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_COLON_COLON] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_yield] = ACTIONS(1300), - [anon_sym_move] = ACTIONS(1300), - [sym_integer_literal] = ACTIONS(1298), - [aux_sym_string_literal_token1] = ACTIONS(1298), - [sym_char_literal] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1300), - [sym_super] = ACTIONS(1300), - [sym_crate] = ACTIONS(1300), - [sym_metavariable] = ACTIONS(1298), - [sym_raw_string_literal] = ACTIONS(1298), - [sym_float_literal] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_identifier] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_macro_rules_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u128] = ACTIONS(1282), + [anon_sym_i128] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_str] = ACTIONS(1282), + [anon_sym_char] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_fn] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1282), + [anon_sym_loop] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_mod] = ACTIONS(1282), + [anon_sym_pub] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(1282), + [anon_sym_trait] = ACTIONS(1282), + [anon_sym_type] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_unsafe] = ACTIONS(1282), + [anon_sym_use] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_COLON_COLON] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_DOT_DOT] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_yield] = ACTIONS(1282), + [anon_sym_move] = ACTIONS(1282), + [sym_integer_literal] = ACTIONS(1280), + [aux_sym_string_literal_token1] = ACTIONS(1280), + [sym_char_literal] = ACTIONS(1280), + [anon_sym_true] = ACTIONS(1282), + [anon_sym_false] = ACTIONS(1282), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_crate] = ACTIONS(1282), + [sym_metavariable] = ACTIONS(1280), + [sym_raw_string_literal] = ACTIONS(1280), + [sym_float_literal] = ACTIONS(1280), [sym_block_comment] = ACTIONS(3), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_macro_rules_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_u8] = ACTIONS(1304), - [anon_sym_i8] = ACTIONS(1304), - [anon_sym_u16] = ACTIONS(1304), - [anon_sym_i16] = ACTIONS(1304), - [anon_sym_u32] = ACTIONS(1304), - [anon_sym_i32] = ACTIONS(1304), - [anon_sym_u64] = ACTIONS(1304), - [anon_sym_i64] = ACTIONS(1304), - [anon_sym_u128] = ACTIONS(1304), - [anon_sym_i128] = ACTIONS(1304), - [anon_sym_isize] = ACTIONS(1304), - [anon_sym_usize] = ACTIONS(1304), - [anon_sym_f32] = ACTIONS(1304), - [anon_sym_f64] = ACTIONS(1304), - [anon_sym_bool] = ACTIONS(1304), - [anon_sym_str] = ACTIONS(1304), - [anon_sym_char] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_fn] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_impl] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1304), - [anon_sym_loop] = ACTIONS(1304), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_mod] = ACTIONS(1304), - [anon_sym_pub] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_trait] = ACTIONS(1304), - [anon_sym_type] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_unsafe] = ACTIONS(1304), - [anon_sym_use] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_POUND] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_COLON_COLON] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_yield] = ACTIONS(1304), - [anon_sym_move] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1302), - [aux_sym_string_literal_token1] = ACTIONS(1302), - [sym_char_literal] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_crate] = ACTIONS(1304), - [sym_metavariable] = ACTIONS(1302), - [sym_raw_string_literal] = ACTIONS(1302), - [sym_float_literal] = ACTIONS(1302), + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_identifier] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym_macro_rules_BANG] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_u8] = ACTIONS(1286), + [anon_sym_i8] = ACTIONS(1286), + [anon_sym_u16] = ACTIONS(1286), + [anon_sym_i16] = ACTIONS(1286), + [anon_sym_u32] = ACTIONS(1286), + [anon_sym_i32] = ACTIONS(1286), + [anon_sym_u64] = ACTIONS(1286), + [anon_sym_i64] = ACTIONS(1286), + [anon_sym_u128] = ACTIONS(1286), + [anon_sym_i128] = ACTIONS(1286), + [anon_sym_isize] = ACTIONS(1286), + [anon_sym_usize] = ACTIONS(1286), + [anon_sym_f32] = ACTIONS(1286), + [anon_sym_f64] = ACTIONS(1286), + [anon_sym_bool] = ACTIONS(1286), + [anon_sym_str] = ACTIONS(1286), + [anon_sym_char] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_fn] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_impl] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_loop] = ACTIONS(1286), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_mod] = ACTIONS(1286), + [anon_sym_pub] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_trait] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_unsafe] = ACTIONS(1286), + [anon_sym_use] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_POUND] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1286), + [anon_sym_move] = ACTIONS(1286), + [sym_integer_literal] = ACTIONS(1284), + [aux_sym_string_literal_token1] = ACTIONS(1284), + [sym_char_literal] = ACTIONS(1284), + [anon_sym_true] = ACTIONS(1286), + [anon_sym_false] = ACTIONS(1286), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1286), + [sym_super] = ACTIONS(1286), + [sym_crate] = ACTIONS(1286), + [sym_metavariable] = ACTIONS(1284), + [sym_raw_string_literal] = ACTIONS(1284), + [sym_float_literal] = ACTIONS(1284), [sym_block_comment] = ACTIONS(3), }, [312] = { - [ts_builtin_sym_end] = ACTIONS(1306), - [sym_identifier] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_macro_rules_BANG] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_u8] = ACTIONS(1308), - [anon_sym_i8] = ACTIONS(1308), - [anon_sym_u16] = ACTIONS(1308), - [anon_sym_i16] = ACTIONS(1308), - [anon_sym_u32] = ACTIONS(1308), - [anon_sym_i32] = ACTIONS(1308), - [anon_sym_u64] = ACTIONS(1308), - [anon_sym_i64] = ACTIONS(1308), - [anon_sym_u128] = ACTIONS(1308), - [anon_sym_i128] = ACTIONS(1308), - [anon_sym_isize] = ACTIONS(1308), - [anon_sym_usize] = ACTIONS(1308), - [anon_sym_f32] = ACTIONS(1308), - [anon_sym_f64] = ACTIONS(1308), - [anon_sym_bool] = ACTIONS(1308), - [anon_sym_str] = ACTIONS(1308), - [anon_sym_char] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_impl] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1308), - [anon_sym_pub] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_trait] = ACTIONS(1308), - [anon_sym_type] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_unsafe] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_COLON_COLON] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_yield] = ACTIONS(1308), - [anon_sym_move] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1306), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1308), - [sym_super] = ACTIONS(1308), - [sym_crate] = ACTIONS(1308), - [sym_metavariable] = ACTIONS(1306), - [sym_raw_string_literal] = ACTIONS(1306), - [sym_float_literal] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_macro_rules_BANG] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_u8] = ACTIONS(1290), + [anon_sym_i8] = ACTIONS(1290), + [anon_sym_u16] = ACTIONS(1290), + [anon_sym_i16] = ACTIONS(1290), + [anon_sym_u32] = ACTIONS(1290), + [anon_sym_i32] = ACTIONS(1290), + [anon_sym_u64] = ACTIONS(1290), + [anon_sym_i64] = ACTIONS(1290), + [anon_sym_u128] = ACTIONS(1290), + [anon_sym_i128] = ACTIONS(1290), + [anon_sym_isize] = ACTIONS(1290), + [anon_sym_usize] = ACTIONS(1290), + [anon_sym_f32] = ACTIONS(1290), + [anon_sym_f64] = ACTIONS(1290), + [anon_sym_bool] = ACTIONS(1290), + [anon_sym_str] = ACTIONS(1290), + [anon_sym_char] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_impl] = ACTIONS(1290), + [anon_sym_let] = ACTIONS(1290), + [anon_sym_loop] = ACTIONS(1290), + [anon_sym_match] = ACTIONS(1290), + [anon_sym_mod] = ACTIONS(1290), + [anon_sym_pub] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_trait] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_unsafe] = ACTIONS(1290), + [anon_sym_use] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1288), + [anon_sym_COLON_COLON] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_DOT_DOT] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_yield] = ACTIONS(1290), + [anon_sym_move] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1288), + [aux_sym_string_literal_token1] = ACTIONS(1288), + [sym_char_literal] = ACTIONS(1288), + [anon_sym_true] = ACTIONS(1290), + [anon_sym_false] = ACTIONS(1290), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1290), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1288), + [sym_raw_string_literal] = ACTIONS(1288), + [sym_float_literal] = ACTIONS(1288), [sym_block_comment] = ACTIONS(3), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_macro_rules_BANG] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_u8] = ACTIONS(1312), - [anon_sym_i8] = ACTIONS(1312), - [anon_sym_u16] = ACTIONS(1312), - [anon_sym_i16] = ACTIONS(1312), - [anon_sym_u32] = ACTIONS(1312), - [anon_sym_i32] = ACTIONS(1312), - [anon_sym_u64] = ACTIONS(1312), - [anon_sym_i64] = ACTIONS(1312), - [anon_sym_u128] = ACTIONS(1312), - [anon_sym_i128] = ACTIONS(1312), - [anon_sym_isize] = ACTIONS(1312), - [anon_sym_usize] = ACTIONS(1312), - [anon_sym_f32] = ACTIONS(1312), - [anon_sym_f64] = ACTIONS(1312), - [anon_sym_bool] = ACTIONS(1312), - [anon_sym_str] = ACTIONS(1312), - [anon_sym_char] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_fn] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_impl] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_pub] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_trait] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_unsafe] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_COLON_COLON] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_yield] = ACTIONS(1312), - [anon_sym_move] = ACTIONS(1312), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1310), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_crate] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1310), - [sym_raw_string_literal] = ACTIONS(1310), - [sym_float_literal] = ACTIONS(1310), + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_identifier] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_macro_rules_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1294), + [anon_sym_i8] = ACTIONS(1294), + [anon_sym_u16] = ACTIONS(1294), + [anon_sym_i16] = ACTIONS(1294), + [anon_sym_u32] = ACTIONS(1294), + [anon_sym_i32] = ACTIONS(1294), + [anon_sym_u64] = ACTIONS(1294), + [anon_sym_i64] = ACTIONS(1294), + [anon_sym_u128] = ACTIONS(1294), + [anon_sym_i128] = ACTIONS(1294), + [anon_sym_isize] = ACTIONS(1294), + [anon_sym_usize] = ACTIONS(1294), + [anon_sym_f32] = ACTIONS(1294), + [anon_sym_f64] = ACTIONS(1294), + [anon_sym_bool] = ACTIONS(1294), + [anon_sym_str] = ACTIONS(1294), + [anon_sym_char] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1294), + [anon_sym_loop] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_mod] = ACTIONS(1294), + [anon_sym_pub] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_trait] = ACTIONS(1294), + [anon_sym_type] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_unsafe] = ACTIONS(1294), + [anon_sym_use] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_COLON_COLON] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1294), + [anon_sym_move] = ACTIONS(1294), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1292), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1294), + [sym_super] = ACTIONS(1294), + [sym_crate] = ACTIONS(1294), + [sym_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(1292), + [sym_float_literal] = ACTIONS(1292), [sym_block_comment] = ACTIONS(3), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_macro_rules_BANG] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_u8] = ACTIONS(1316), - [anon_sym_i8] = ACTIONS(1316), - [anon_sym_u16] = ACTIONS(1316), - [anon_sym_i16] = ACTIONS(1316), - [anon_sym_u32] = ACTIONS(1316), - [anon_sym_i32] = ACTIONS(1316), - [anon_sym_u64] = ACTIONS(1316), - [anon_sym_i64] = ACTIONS(1316), - [anon_sym_u128] = ACTIONS(1316), - [anon_sym_i128] = ACTIONS(1316), - [anon_sym_isize] = ACTIONS(1316), - [anon_sym_usize] = ACTIONS(1316), - [anon_sym_f32] = ACTIONS(1316), - [anon_sym_f64] = ACTIONS(1316), - [anon_sym_bool] = ACTIONS(1316), - [anon_sym_str] = ACTIONS(1316), - [anon_sym_char] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_async] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_fn] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_impl] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_loop] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_pub] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_trait] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_unsafe] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_COLON_COLON] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_yield] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1314), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1316), - [sym_super] = ACTIONS(1316), - [sym_crate] = ACTIONS(1316), - [sym_metavariable] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_identifier] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_macro_rules_BANG] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_u8] = ACTIONS(1298), + [anon_sym_i8] = ACTIONS(1298), + [anon_sym_u16] = ACTIONS(1298), + [anon_sym_i16] = ACTIONS(1298), + [anon_sym_u32] = ACTIONS(1298), + [anon_sym_i32] = ACTIONS(1298), + [anon_sym_u64] = ACTIONS(1298), + [anon_sym_i64] = ACTIONS(1298), + [anon_sym_u128] = ACTIONS(1298), + [anon_sym_i128] = ACTIONS(1298), + [anon_sym_isize] = ACTIONS(1298), + [anon_sym_usize] = ACTIONS(1298), + [anon_sym_f32] = ACTIONS(1298), + [anon_sym_f64] = ACTIONS(1298), + [anon_sym_bool] = ACTIONS(1298), + [anon_sym_str] = ACTIONS(1298), + [anon_sym_char] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_impl] = ACTIONS(1298), + [anon_sym_let] = ACTIONS(1298), + [anon_sym_loop] = ACTIONS(1298), + [anon_sym_match] = ACTIONS(1298), + [anon_sym_mod] = ACTIONS(1298), + [anon_sym_pub] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_trait] = ACTIONS(1298), + [anon_sym_type] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_unsafe] = ACTIONS(1298), + [anon_sym_use] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_POUND] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_COLON_COLON] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_DOT_DOT] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_yield] = ACTIONS(1298), + [anon_sym_move] = ACTIONS(1298), + [sym_integer_literal] = ACTIONS(1296), + [aux_sym_string_literal_token1] = ACTIONS(1296), + [sym_char_literal] = ACTIONS(1296), + [anon_sym_true] = ACTIONS(1298), + [anon_sym_false] = ACTIONS(1298), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1298), + [sym_super] = ACTIONS(1298), + [sym_crate] = ACTIONS(1298), + [sym_metavariable] = ACTIONS(1296), + [sym_raw_string_literal] = ACTIONS(1296), + [sym_float_literal] = ACTIONS(1296), [sym_block_comment] = ACTIONS(3), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_macro_rules_BANG] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_fn] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_impl] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_loop] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_pub] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_trait] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_unsafe] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_COLON_COLON] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_yield] = ACTIONS(1320), - [anon_sym_move] = ACTIONS(1320), - [sym_integer_literal] = ACTIONS(1318), - [aux_sym_string_literal_token1] = ACTIONS(1318), - [sym_char_literal] = ACTIONS(1318), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1320), - [sym_super] = ACTIONS(1320), - [sym_crate] = ACTIONS(1320), - [sym_metavariable] = ACTIONS(1318), - [sym_raw_string_literal] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1318), + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_macro_rules_BANG] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_u8] = ACTIONS(1302), + [anon_sym_i8] = ACTIONS(1302), + [anon_sym_u16] = ACTIONS(1302), + [anon_sym_i16] = ACTIONS(1302), + [anon_sym_u32] = ACTIONS(1302), + [anon_sym_i32] = ACTIONS(1302), + [anon_sym_u64] = ACTIONS(1302), + [anon_sym_i64] = ACTIONS(1302), + [anon_sym_u128] = ACTIONS(1302), + [anon_sym_i128] = ACTIONS(1302), + [anon_sym_isize] = ACTIONS(1302), + [anon_sym_usize] = ACTIONS(1302), + [anon_sym_f32] = ACTIONS(1302), + [anon_sym_f64] = ACTIONS(1302), + [anon_sym_bool] = ACTIONS(1302), + [anon_sym_str] = ACTIONS(1302), + [anon_sym_char] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_async] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_impl] = ACTIONS(1302), + [anon_sym_let] = ACTIONS(1302), + [anon_sym_loop] = ACTIONS(1302), + [anon_sym_match] = ACTIONS(1302), + [anon_sym_mod] = ACTIONS(1302), + [anon_sym_pub] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_trait] = ACTIONS(1302), + [anon_sym_type] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1302), + [anon_sym_use] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_POUND] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_COLON_COLON] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_DOT_DOT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_move] = ACTIONS(1302), + [sym_integer_literal] = ACTIONS(1300), + [aux_sym_string_literal_token1] = ACTIONS(1300), + [sym_char_literal] = ACTIONS(1300), + [anon_sym_true] = ACTIONS(1302), + [anon_sym_false] = ACTIONS(1302), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1302), + [sym_super] = ACTIONS(1302), + [sym_crate] = ACTIONS(1302), + [sym_metavariable] = ACTIONS(1300), + [sym_raw_string_literal] = ACTIONS(1300), + [sym_float_literal] = ACTIONS(1300), [sym_block_comment] = ACTIONS(3), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_macro_rules_BANG] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_u8] = ACTIONS(1324), - [anon_sym_i8] = ACTIONS(1324), - [anon_sym_u16] = ACTIONS(1324), - [anon_sym_i16] = ACTIONS(1324), - [anon_sym_u32] = ACTIONS(1324), - [anon_sym_i32] = ACTIONS(1324), - [anon_sym_u64] = ACTIONS(1324), - [anon_sym_i64] = ACTIONS(1324), - [anon_sym_u128] = ACTIONS(1324), - [anon_sym_i128] = ACTIONS(1324), - [anon_sym_isize] = ACTIONS(1324), - [anon_sym_usize] = ACTIONS(1324), - [anon_sym_f32] = ACTIONS(1324), - [anon_sym_f64] = ACTIONS(1324), - [anon_sym_bool] = ACTIONS(1324), - [anon_sym_str] = ACTIONS(1324), - [anon_sym_char] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_async] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_fn] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_impl] = ACTIONS(1324), - [anon_sym_let] = ACTIONS(1324), - [anon_sym_loop] = ACTIONS(1324), - [anon_sym_match] = ACTIONS(1324), - [anon_sym_mod] = ACTIONS(1324), - [anon_sym_pub] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_trait] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_unsafe] = ACTIONS(1324), - [anon_sym_use] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_COLON_COLON] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_yield] = ACTIONS(1324), - [anon_sym_move] = ACTIONS(1324), - [sym_integer_literal] = ACTIONS(1322), - [aux_sym_string_literal_token1] = ACTIONS(1322), - [sym_char_literal] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1324), - [anon_sym_false] = ACTIONS(1324), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1324), - [sym_super] = ACTIONS(1324), - [sym_crate] = ACTIONS(1324), - [sym_metavariable] = ACTIONS(1322), - [sym_raw_string_literal] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1322), + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_macro_rules_BANG] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_u8] = ACTIONS(1306), + [anon_sym_i8] = ACTIONS(1306), + [anon_sym_u16] = ACTIONS(1306), + [anon_sym_i16] = ACTIONS(1306), + [anon_sym_u32] = ACTIONS(1306), + [anon_sym_i32] = ACTIONS(1306), + [anon_sym_u64] = ACTIONS(1306), + [anon_sym_i64] = ACTIONS(1306), + [anon_sym_u128] = ACTIONS(1306), + [anon_sym_i128] = ACTIONS(1306), + [anon_sym_isize] = ACTIONS(1306), + [anon_sym_usize] = ACTIONS(1306), + [anon_sym_f32] = ACTIONS(1306), + [anon_sym_f64] = ACTIONS(1306), + [anon_sym_bool] = ACTIONS(1306), + [anon_sym_str] = ACTIONS(1306), + [anon_sym_char] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_loop] = ACTIONS(1306), + [anon_sym_match] = ACTIONS(1306), + [anon_sym_mod] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_trait] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_POUND] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_COLON_COLON] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_yield] = ACTIONS(1306), + [anon_sym_move] = ACTIONS(1306), + [sym_integer_literal] = ACTIONS(1304), + [aux_sym_string_literal_token1] = ACTIONS(1304), + [sym_char_literal] = ACTIONS(1304), + [anon_sym_true] = ACTIONS(1306), + [anon_sym_false] = ACTIONS(1306), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1306), + [sym_super] = ACTIONS(1306), + [sym_crate] = ACTIONS(1306), + [sym_metavariable] = ACTIONS(1304), + [sym_raw_string_literal] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1304), [sym_block_comment] = ACTIONS(3), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_macro_rules_BANG] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_u8] = ACTIONS(1328), - [anon_sym_i8] = ACTIONS(1328), - [anon_sym_u16] = ACTIONS(1328), - [anon_sym_i16] = ACTIONS(1328), - [anon_sym_u32] = ACTIONS(1328), - [anon_sym_i32] = ACTIONS(1328), - [anon_sym_u64] = ACTIONS(1328), - [anon_sym_i64] = ACTIONS(1328), - [anon_sym_u128] = ACTIONS(1328), - [anon_sym_i128] = ACTIONS(1328), - [anon_sym_isize] = ACTIONS(1328), - [anon_sym_usize] = ACTIONS(1328), - [anon_sym_f32] = ACTIONS(1328), - [anon_sym_f64] = ACTIONS(1328), - [anon_sym_bool] = ACTIONS(1328), - [anon_sym_str] = ACTIONS(1328), - [anon_sym_char] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_async] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_fn] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_impl] = ACTIONS(1328), - [anon_sym_let] = ACTIONS(1328), - [anon_sym_loop] = ACTIONS(1328), - [anon_sym_match] = ACTIONS(1328), - [anon_sym_mod] = ACTIONS(1328), - [anon_sym_pub] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_trait] = ACTIONS(1328), - [anon_sym_type] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_unsafe] = ACTIONS(1328), - [anon_sym_use] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_POUND] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_COLON_COLON] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_DOT_DOT] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_move] = ACTIONS(1328), - [sym_integer_literal] = ACTIONS(1326), - [aux_sym_string_literal_token1] = ACTIONS(1326), - [sym_char_literal] = ACTIONS(1326), - [anon_sym_true] = ACTIONS(1328), - [anon_sym_false] = ACTIONS(1328), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1328), - [sym_super] = ACTIONS(1328), - [sym_crate] = ACTIONS(1328), - [sym_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1326), - [sym_float_literal] = ACTIONS(1326), + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_macro_rules_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_POUND] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_DOT_DOT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_move] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1308), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_metavariable] = ACTIONS(1308), + [sym_raw_string_literal] = ACTIONS(1308), + [sym_float_literal] = ACTIONS(1308), [sym_block_comment] = ACTIONS(3), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_macro_rules_BANG] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_u8] = ACTIONS(1332), - [anon_sym_i8] = ACTIONS(1332), - [anon_sym_u16] = ACTIONS(1332), - [anon_sym_i16] = ACTIONS(1332), - [anon_sym_u32] = ACTIONS(1332), - [anon_sym_i32] = ACTIONS(1332), - [anon_sym_u64] = ACTIONS(1332), - [anon_sym_i64] = ACTIONS(1332), - [anon_sym_u128] = ACTIONS(1332), - [anon_sym_i128] = ACTIONS(1332), - [anon_sym_isize] = ACTIONS(1332), - [anon_sym_usize] = ACTIONS(1332), - [anon_sym_f32] = ACTIONS(1332), - [anon_sym_f64] = ACTIONS(1332), - [anon_sym_bool] = ACTIONS(1332), - [anon_sym_str] = ACTIONS(1332), - [anon_sym_char] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_async] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_fn] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_impl] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_pub] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_trait] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_unsafe] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1330), - [anon_sym_COLON_COLON] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_DOT_DOT] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PIPE] = ACTIONS(1330), - [anon_sym_yield] = ACTIONS(1332), - [anon_sym_move] = ACTIONS(1332), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1330), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1332), - [sym_super] = ACTIONS(1332), - [sym_crate] = ACTIONS(1332), - [sym_metavariable] = ACTIONS(1330), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_macro_rules_BANG] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1314), + [anon_sym_i8] = ACTIONS(1314), + [anon_sym_u16] = ACTIONS(1314), + [anon_sym_i16] = ACTIONS(1314), + [anon_sym_u32] = ACTIONS(1314), + [anon_sym_i32] = ACTIONS(1314), + [anon_sym_u64] = ACTIONS(1314), + [anon_sym_i64] = ACTIONS(1314), + [anon_sym_u128] = ACTIONS(1314), + [anon_sym_i128] = ACTIONS(1314), + [anon_sym_isize] = ACTIONS(1314), + [anon_sym_usize] = ACTIONS(1314), + [anon_sym_f32] = ACTIONS(1314), + [anon_sym_f64] = ACTIONS(1314), + [anon_sym_bool] = ACTIONS(1314), + [anon_sym_str] = ACTIONS(1314), + [anon_sym_char] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_impl] = ACTIONS(1314), + [anon_sym_let] = ACTIONS(1314), + [anon_sym_loop] = ACTIONS(1314), + [anon_sym_match] = ACTIONS(1314), + [anon_sym_mod] = ACTIONS(1314), + [anon_sym_pub] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_trait] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_unsafe] = ACTIONS(1314), + [anon_sym_use] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_yield] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1312), + [sym_char_literal] = ACTIONS(1312), + [anon_sym_true] = ACTIONS(1314), + [anon_sym_false] = ACTIONS(1314), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1312), + [sym_raw_string_literal] = ACTIONS(1312), + [sym_float_literal] = ACTIONS(1312), [sym_block_comment] = ACTIONS(3), }, [319] = { - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_macro_rules_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_u8] = ACTIONS(1336), - [anon_sym_i8] = ACTIONS(1336), - [anon_sym_u16] = ACTIONS(1336), - [anon_sym_i16] = ACTIONS(1336), - [anon_sym_u32] = ACTIONS(1336), - [anon_sym_i32] = ACTIONS(1336), - [anon_sym_u64] = ACTIONS(1336), - [anon_sym_i64] = ACTIONS(1336), - [anon_sym_u128] = ACTIONS(1336), - [anon_sym_i128] = ACTIONS(1336), - [anon_sym_isize] = ACTIONS(1336), - [anon_sym_usize] = ACTIONS(1336), - [anon_sym_f32] = ACTIONS(1336), - [anon_sym_f64] = ACTIONS(1336), - [anon_sym_bool] = ACTIONS(1336), - [anon_sym_str] = ACTIONS(1336), - [anon_sym_char] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_impl] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_pub] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_trait] = ACTIONS(1336), - [anon_sym_type] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_unsafe] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_LT] = ACTIONS(1334), - [anon_sym_COLON_COLON] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_DOT_DOT] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PIPE] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1336), - [anon_sym_move] = ACTIONS(1336), - [sym_integer_literal] = ACTIONS(1334), - [aux_sym_string_literal_token1] = ACTIONS(1334), - [sym_char_literal] = ACTIONS(1334), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1336), - [sym_super] = ACTIONS(1336), - [sym_crate] = ACTIONS(1336), - [sym_metavariable] = ACTIONS(1334), - [sym_raw_string_literal] = ACTIONS(1334), - [sym_float_literal] = ACTIONS(1334), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym_macro_rules_BANG] = ACTIONS(1316), + [anon_sym_LPAREN] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_u8] = ACTIONS(1318), + [anon_sym_i8] = ACTIONS(1318), + [anon_sym_u16] = ACTIONS(1318), + [anon_sym_i16] = ACTIONS(1318), + [anon_sym_u32] = ACTIONS(1318), + [anon_sym_i32] = ACTIONS(1318), + [anon_sym_u64] = ACTIONS(1318), + [anon_sym_i64] = ACTIONS(1318), + [anon_sym_u128] = ACTIONS(1318), + [anon_sym_i128] = ACTIONS(1318), + [anon_sym_isize] = ACTIONS(1318), + [anon_sym_usize] = ACTIONS(1318), + [anon_sym_f32] = ACTIONS(1318), + [anon_sym_f64] = ACTIONS(1318), + [anon_sym_bool] = ACTIONS(1318), + [anon_sym_str] = ACTIONS(1318), + [anon_sym_char] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_async] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_fn] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_impl] = ACTIONS(1318), + [anon_sym_let] = ACTIONS(1318), + [anon_sym_loop] = ACTIONS(1318), + [anon_sym_match] = ACTIONS(1318), + [anon_sym_mod] = ACTIONS(1318), + [anon_sym_pub] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_trait] = ACTIONS(1318), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_unsafe] = ACTIONS(1318), + [anon_sym_use] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_POUND] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1316), + [anon_sym_COLON_COLON] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_DOT_DOT] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PIPE] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), + [anon_sym_move] = ACTIONS(1318), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1316), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1318), + [anon_sym_false] = ACTIONS(1318), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1318), + [sym_super] = ACTIONS(1318), + [sym_crate] = ACTIONS(1318), + [sym_metavariable] = ACTIONS(1316), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_macro_rules_BANG] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_macro_rules_BANG] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_u8] = ACTIONS(1322), + [anon_sym_i8] = ACTIONS(1322), + [anon_sym_u16] = ACTIONS(1322), + [anon_sym_i16] = ACTIONS(1322), + [anon_sym_u32] = ACTIONS(1322), + [anon_sym_i32] = ACTIONS(1322), + [anon_sym_u64] = ACTIONS(1322), + [anon_sym_i64] = ACTIONS(1322), + [anon_sym_u128] = ACTIONS(1322), + [anon_sym_i128] = ACTIONS(1322), + [anon_sym_isize] = ACTIONS(1322), + [anon_sym_usize] = ACTIONS(1322), + [anon_sym_f32] = ACTIONS(1322), + [anon_sym_f64] = ACTIONS(1322), + [anon_sym_bool] = ACTIONS(1322), + [anon_sym_str] = ACTIONS(1322), + [anon_sym_char] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_impl] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1322), + [anon_sym_loop] = ACTIONS(1322), + [anon_sym_match] = ACTIONS(1322), + [anon_sym_mod] = ACTIONS(1322), + [anon_sym_pub] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_trait] = ACTIONS(1322), + [anon_sym_type] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_unsafe] = ACTIONS(1322), + [anon_sym_use] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_POUND] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_DOT_DOT] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_move] = ACTIONS(1322), + [sym_integer_literal] = ACTIONS(1320), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1322), + [sym_super] = ACTIONS(1322), + [sym_crate] = ACTIONS(1322), + [sym_metavariable] = ACTIONS(1320), + [sym_raw_string_literal] = ACTIONS(1320), + [sym_float_literal] = ACTIONS(1320), + [sym_block_comment] = ACTIONS(3), + }, + [321] = { + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym_macro_rules_BANG] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_u8] = ACTIONS(1326), + [anon_sym_i8] = ACTIONS(1326), + [anon_sym_u16] = ACTIONS(1326), + [anon_sym_i16] = ACTIONS(1326), + [anon_sym_u32] = ACTIONS(1326), + [anon_sym_i32] = ACTIONS(1326), + [anon_sym_u64] = ACTIONS(1326), + [anon_sym_i64] = ACTIONS(1326), + [anon_sym_u128] = ACTIONS(1326), + [anon_sym_i128] = ACTIONS(1326), + [anon_sym_isize] = ACTIONS(1326), + [anon_sym_usize] = ACTIONS(1326), + [anon_sym_f32] = ACTIONS(1326), + [anon_sym_f64] = ACTIONS(1326), + [anon_sym_bool] = ACTIONS(1326), + [anon_sym_str] = ACTIONS(1326), + [anon_sym_char] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_fn] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_impl] = ACTIONS(1326), + [anon_sym_let] = ACTIONS(1326), + [anon_sym_loop] = ACTIONS(1326), + [anon_sym_match] = ACTIONS(1326), + [anon_sym_mod] = ACTIONS(1326), + [anon_sym_pub] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_trait] = ACTIONS(1326), + [anon_sym_type] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_unsafe] = ACTIONS(1326), + [anon_sym_use] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_POUND] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1324), + [anon_sym_COLON_COLON] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_DOT_DOT] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PIPE] = ACTIONS(1324), + [anon_sym_yield] = ACTIONS(1326), + [anon_sym_move] = ACTIONS(1326), + [sym_integer_literal] = ACTIONS(1324), + [aux_sym_string_literal_token1] = ACTIONS(1324), + [sym_char_literal] = ACTIONS(1324), + [anon_sym_true] = ACTIONS(1326), + [anon_sym_false] = ACTIONS(1326), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1324), + [sym_raw_string_literal] = ACTIONS(1324), + [sym_float_literal] = ACTIONS(1324), + [sym_block_comment] = ACTIONS(3), + }, + [322] = { + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym_macro_rules_BANG] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_fn] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_impl] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1330), + [anon_sym_loop] = ACTIONS(1330), + [anon_sym_match] = ACTIONS(1330), + [anon_sym_mod] = ACTIONS(1330), + [anon_sym_pub] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_trait] = ACTIONS(1330), + [anon_sym_type] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_unsafe] = ACTIONS(1330), + [anon_sym_use] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_POUND] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym_LT] = ACTIONS(1328), + [anon_sym_COLON_COLON] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_DOT_DOT] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PIPE] = ACTIONS(1328), + [anon_sym_yield] = ACTIONS(1330), + [anon_sym_move] = ACTIONS(1330), + [sym_integer_literal] = ACTIONS(1328), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1328), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1330), + [sym_super] = ACTIONS(1330), + [sym_crate] = ACTIONS(1330), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1328), + [sym_float_literal] = ACTIONS(1328), + [sym_block_comment] = ACTIONS(3), + }, + [323] = { + [sym_attribute_item] = STATE(567), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_match_arm] = STATE(507), + [sym_last_match_arm] = STATE(2462), + [sym_match_pattern] = STATE(2416), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2021), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_match_block_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1336), [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), [anon_sym_u8] = ACTIONS(1340), [anon_sym_i8] = ACTIONS(1340), [anon_sym_u16] = ACTIONS(1340), @@ -48285,285 +51270,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1340), [anon_sym_str] = ACTIONS(1340), [anon_sym_char] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_POUND] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_DOT_DOT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_move] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1338), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1340), - [anon_sym_false] = ACTIONS(1340), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1338), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), - }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_macro_rules_BANG] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_u8] = ACTIONS(1344), - [anon_sym_i8] = ACTIONS(1344), - [anon_sym_u16] = ACTIONS(1344), - [anon_sym_i16] = ACTIONS(1344), - [anon_sym_u32] = ACTIONS(1344), - [anon_sym_i32] = ACTIONS(1344), - [anon_sym_u64] = ACTIONS(1344), - [anon_sym_i64] = ACTIONS(1344), - [anon_sym_u128] = ACTIONS(1344), - [anon_sym_i128] = ACTIONS(1344), - [anon_sym_isize] = ACTIONS(1344), - [anon_sym_usize] = ACTIONS(1344), - [anon_sym_f32] = ACTIONS(1344), - [anon_sym_f64] = ACTIONS(1344), - [anon_sym_bool] = ACTIONS(1344), - [anon_sym_str] = ACTIONS(1344), - [anon_sym_char] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_async] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1342), [anon_sym_default] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_impl] = ACTIONS(1344), - [anon_sym_let] = ACTIONS(1344), - [anon_sym_loop] = ACTIONS(1344), - [anon_sym_match] = ACTIONS(1344), - [anon_sym_mod] = ACTIONS(1344), - [anon_sym_pub] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_trait] = ACTIONS(1344), - [anon_sym_type] = ACTIONS(1344), [anon_sym_union] = ACTIONS(1344), - [anon_sym_unsafe] = ACTIONS(1344), - [anon_sym_use] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_POUND] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_COLON_COLON] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_move] = ACTIONS(1344), - [sym_integer_literal] = ACTIONS(1342), - [aux_sym_string_literal_token1] = ACTIONS(1342), - [sym_char_literal] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1344), - [anon_sym_false] = ACTIONS(1344), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1344), - [sym_crate] = ACTIONS(1344), - [sym_metavariable] = ACTIONS(1342), - [sym_raw_string_literal] = ACTIONS(1342), - [sym_float_literal] = ACTIONS(1342), - [sym_block_comment] = ACTIONS(3), - }, - [322] = { - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_identifier] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_macro_rules_BANG] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_u8] = ACTIONS(1348), - [anon_sym_i8] = ACTIONS(1348), - [anon_sym_u16] = ACTIONS(1348), - [anon_sym_i16] = ACTIONS(1348), - [anon_sym_u32] = ACTIONS(1348), - [anon_sym_i32] = ACTIONS(1348), - [anon_sym_u64] = ACTIONS(1348), - [anon_sym_i64] = ACTIONS(1348), - [anon_sym_u128] = ACTIONS(1348), - [anon_sym_i128] = ACTIONS(1348), - [anon_sym_isize] = ACTIONS(1348), - [anon_sym_usize] = ACTIONS(1348), - [anon_sym_f32] = ACTIONS(1348), - [anon_sym_f64] = ACTIONS(1348), - [anon_sym_bool] = ACTIONS(1348), - [anon_sym_str] = ACTIONS(1348), - [anon_sym_char] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_impl] = ACTIONS(1348), - [anon_sym_let] = ACTIONS(1348), - [anon_sym_loop] = ACTIONS(1348), - [anon_sym_match] = ACTIONS(1348), - [anon_sym_mod] = ACTIONS(1348), - [anon_sym_pub] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_trait] = ACTIONS(1348), - [anon_sym_type] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_unsafe] = ACTIONS(1348), - [anon_sym_use] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_POUND] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1346), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_yield] = ACTIONS(1348), - [anon_sym_move] = ACTIONS(1348), - [sym_integer_literal] = ACTIONS(1346), - [aux_sym_string_literal_token1] = ACTIONS(1346), - [sym_char_literal] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1348), - [anon_sym_false] = ACTIONS(1348), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1348), - [sym_super] = ACTIONS(1348), - [sym_crate] = ACTIONS(1348), - [sym_metavariable] = ACTIONS(1346), - [sym_raw_string_literal] = ACTIONS(1346), - [sym_float_literal] = ACTIONS(1346), - [sym_block_comment] = ACTIONS(3), - }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_macro_rules_BANG] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_u8] = ACTIONS(1352), - [anon_sym_i8] = ACTIONS(1352), - [anon_sym_u16] = ACTIONS(1352), - [anon_sym_i16] = ACTIONS(1352), - [anon_sym_u32] = ACTIONS(1352), - [anon_sym_i32] = ACTIONS(1352), - [anon_sym_u64] = ACTIONS(1352), - [anon_sym_i64] = ACTIONS(1352), - [anon_sym_u128] = ACTIONS(1352), - [anon_sym_i128] = ACTIONS(1352), - [anon_sym_isize] = ACTIONS(1352), - [anon_sym_usize] = ACTIONS(1352), - [anon_sym_f32] = ACTIONS(1352), - [anon_sym_f64] = ACTIONS(1352), - [anon_sym_bool] = ACTIONS(1352), - [anon_sym_str] = ACTIONS(1352), - [anon_sym_char] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_async] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_fn] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_impl] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_loop] = ACTIONS(1352), - [anon_sym_match] = ACTIONS(1352), - [anon_sym_mod] = ACTIONS(1352), - [anon_sym_pub] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_trait] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_unsafe] = ACTIONS(1352), - [anon_sym_use] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_COLON_COLON] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_yield] = ACTIONS(1352), - [anon_sym_move] = ACTIONS(1352), - [sym_integer_literal] = ACTIONS(1350), - [aux_sym_string_literal_token1] = ACTIONS(1350), - [sym_char_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_crate] = ACTIONS(1352), - [sym_metavariable] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1350), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [324] = { @@ -50261,850 +52991,850 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [346] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_arm] = STATE(496), - [sym_last_match_arm] = STATE(2560), - [sym_match_pattern] = STATE(2369), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(496), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_macro_rules_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u128] = ACTIONS(1444), + [anon_sym_i128] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_str] = ACTIONS(1444), + [anon_sym_char] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_fn] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_impl] = ACTIONS(1444), + [anon_sym_let] = ACTIONS(1444), + [anon_sym_loop] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_mod] = ACTIONS(1444), + [anon_sym_pub] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_trait] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1444), + [anon_sym_use] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_COLON_COLON] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_DOT_DOT] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_yield] = ACTIONS(1444), + [anon_sym_move] = ACTIONS(1444), + [sym_integer_literal] = ACTIONS(1442), + [aux_sym_string_literal_token1] = ACTIONS(1442), + [sym_char_literal] = ACTIONS(1442), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1444), + [sym_super] = ACTIONS(1444), + [sym_crate] = ACTIONS(1444), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1442), + [sym_float_literal] = ACTIONS(1442), [sym_block_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1444), - [sym_identifier] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_macro_rules_BANG] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_u8] = ACTIONS(1446), - [anon_sym_i8] = ACTIONS(1446), - [anon_sym_u16] = ACTIONS(1446), - [anon_sym_i16] = ACTIONS(1446), - [anon_sym_u32] = ACTIONS(1446), - [anon_sym_i32] = ACTIONS(1446), - [anon_sym_u64] = ACTIONS(1446), - [anon_sym_i64] = ACTIONS(1446), - [anon_sym_u128] = ACTIONS(1446), - [anon_sym_i128] = ACTIONS(1446), - [anon_sym_isize] = ACTIONS(1446), - [anon_sym_usize] = ACTIONS(1446), - [anon_sym_f32] = ACTIONS(1446), - [anon_sym_f64] = ACTIONS(1446), - [anon_sym_bool] = ACTIONS(1446), - [anon_sym_str] = ACTIONS(1446), - [anon_sym_char] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_async] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_fn] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_impl] = ACTIONS(1446), - [anon_sym_let] = ACTIONS(1446), - [anon_sym_loop] = ACTIONS(1446), - [anon_sym_match] = ACTIONS(1446), - [anon_sym_mod] = ACTIONS(1446), - [anon_sym_pub] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_trait] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_unsafe] = ACTIONS(1446), - [anon_sym_use] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_DOT_DOT] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_move] = ACTIONS(1446), - [sym_integer_literal] = ACTIONS(1444), - [aux_sym_string_literal_token1] = ACTIONS(1444), - [sym_char_literal] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1446), - [anon_sym_false] = ACTIONS(1446), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1446), - [sym_super] = ACTIONS(1446), - [sym_crate] = ACTIONS(1446), - [sym_metavariable] = ACTIONS(1444), - [sym_raw_string_literal] = ACTIONS(1444), - [sym_float_literal] = ACTIONS(1444), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_macro_rules_BANG] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u128] = ACTIONS(1448), + [anon_sym_i128] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_str] = ACTIONS(1448), + [anon_sym_char] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_fn] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_impl] = ACTIONS(1448), + [anon_sym_let] = ACTIONS(1448), + [anon_sym_loop] = ACTIONS(1448), + [anon_sym_match] = ACTIONS(1448), + [anon_sym_mod] = ACTIONS(1448), + [anon_sym_pub] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_trait] = ACTIONS(1448), + [anon_sym_type] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_unsafe] = ACTIONS(1448), + [anon_sym_use] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_COLON_COLON] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_yield] = ACTIONS(1448), + [anon_sym_move] = ACTIONS(1448), + [sym_integer_literal] = ACTIONS(1446), + [aux_sym_string_literal_token1] = ACTIONS(1446), + [sym_char_literal] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1448), + [sym_super] = ACTIONS(1448), + [sym_crate] = ACTIONS(1448), + [sym_metavariable] = ACTIONS(1446), + [sym_raw_string_literal] = ACTIONS(1446), + [sym_float_literal] = ACTIONS(1446), [sym_block_comment] = ACTIONS(3), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_macro_rules_BANG] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_u8] = ACTIONS(1450), - [anon_sym_i8] = ACTIONS(1450), - [anon_sym_u16] = ACTIONS(1450), - [anon_sym_i16] = ACTIONS(1450), - [anon_sym_u32] = ACTIONS(1450), - [anon_sym_i32] = ACTIONS(1450), - [anon_sym_u64] = ACTIONS(1450), - [anon_sym_i64] = ACTIONS(1450), - [anon_sym_u128] = ACTIONS(1450), - [anon_sym_i128] = ACTIONS(1450), - [anon_sym_isize] = ACTIONS(1450), - [anon_sym_usize] = ACTIONS(1450), - [anon_sym_f32] = ACTIONS(1450), - [anon_sym_f64] = ACTIONS(1450), - [anon_sym_bool] = ACTIONS(1450), - [anon_sym_str] = ACTIONS(1450), - [anon_sym_char] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_async] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_fn] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_impl] = ACTIONS(1450), - [anon_sym_let] = ACTIONS(1450), - [anon_sym_loop] = ACTIONS(1450), - [anon_sym_match] = ACTIONS(1450), - [anon_sym_mod] = ACTIONS(1450), - [anon_sym_pub] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_trait] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_unsafe] = ACTIONS(1450), - [anon_sym_use] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_COLON_COLON] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_DOT_DOT] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_yield] = ACTIONS(1450), - [anon_sym_move] = ACTIONS(1450), - [sym_integer_literal] = ACTIONS(1448), - [aux_sym_string_literal_token1] = ACTIONS(1448), - [sym_char_literal] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1450), - [anon_sym_false] = ACTIONS(1450), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1450), - [sym_super] = ACTIONS(1450), - [sym_crate] = ACTIONS(1450), - [sym_metavariable] = ACTIONS(1448), - [sym_raw_string_literal] = ACTIONS(1448), - [sym_float_literal] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_macro_rules_BANG] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_u8] = ACTIONS(1452), + [anon_sym_i8] = ACTIONS(1452), + [anon_sym_u16] = ACTIONS(1452), + [anon_sym_i16] = ACTIONS(1452), + [anon_sym_u32] = ACTIONS(1452), + [anon_sym_i32] = ACTIONS(1452), + [anon_sym_u64] = ACTIONS(1452), + [anon_sym_i64] = ACTIONS(1452), + [anon_sym_u128] = ACTIONS(1452), + [anon_sym_i128] = ACTIONS(1452), + [anon_sym_isize] = ACTIONS(1452), + [anon_sym_usize] = ACTIONS(1452), + [anon_sym_f32] = ACTIONS(1452), + [anon_sym_f64] = ACTIONS(1452), + [anon_sym_bool] = ACTIONS(1452), + [anon_sym_str] = ACTIONS(1452), + [anon_sym_char] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_async] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_fn] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_impl] = ACTIONS(1452), + [anon_sym_let] = ACTIONS(1452), + [anon_sym_loop] = ACTIONS(1452), + [anon_sym_match] = ACTIONS(1452), + [anon_sym_mod] = ACTIONS(1452), + [anon_sym_pub] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_trait] = ACTIONS(1452), + [anon_sym_type] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_unsafe] = ACTIONS(1452), + [anon_sym_use] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_COLON_COLON] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_DOT_DOT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_yield] = ACTIONS(1452), + [anon_sym_move] = ACTIONS(1452), + [sym_integer_literal] = ACTIONS(1450), + [aux_sym_string_literal_token1] = ACTIONS(1450), + [sym_char_literal] = ACTIONS(1450), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1452), + [sym_super] = ACTIONS(1452), + [sym_crate] = ACTIONS(1452), + [sym_metavariable] = ACTIONS(1450), + [sym_raw_string_literal] = ACTIONS(1450), + [sym_float_literal] = ACTIONS(1450), [sym_block_comment] = ACTIONS(3), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_identifier] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_macro_rules_BANG] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_u8] = ACTIONS(1454), - [anon_sym_i8] = ACTIONS(1454), - [anon_sym_u16] = ACTIONS(1454), - [anon_sym_i16] = ACTIONS(1454), - [anon_sym_u32] = ACTIONS(1454), - [anon_sym_i32] = ACTIONS(1454), - [anon_sym_u64] = ACTIONS(1454), - [anon_sym_i64] = ACTIONS(1454), - [anon_sym_u128] = ACTIONS(1454), - [anon_sym_i128] = ACTIONS(1454), - [anon_sym_isize] = ACTIONS(1454), - [anon_sym_usize] = ACTIONS(1454), - [anon_sym_f32] = ACTIONS(1454), - [anon_sym_f64] = ACTIONS(1454), - [anon_sym_bool] = ACTIONS(1454), - [anon_sym_str] = ACTIONS(1454), - [anon_sym_char] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_async] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_fn] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_impl] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_pub] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_trait] = ACTIONS(1454), - [anon_sym_type] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_unsafe] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_COLON_COLON] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_yield] = ACTIONS(1454), - [anon_sym_move] = ACTIONS(1454), - [sym_integer_literal] = ACTIONS(1452), - [aux_sym_string_literal_token1] = ACTIONS(1452), - [sym_char_literal] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1454), - [sym_super] = ACTIONS(1454), - [sym_crate] = ACTIONS(1454), - [sym_metavariable] = ACTIONS(1452), - [sym_raw_string_literal] = ACTIONS(1452), - [sym_float_literal] = ACTIONS(1452), + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_macro_rules_BANG] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_u8] = ACTIONS(1456), + [anon_sym_i8] = ACTIONS(1456), + [anon_sym_u16] = ACTIONS(1456), + [anon_sym_i16] = ACTIONS(1456), + [anon_sym_u32] = ACTIONS(1456), + [anon_sym_i32] = ACTIONS(1456), + [anon_sym_u64] = ACTIONS(1456), + [anon_sym_i64] = ACTIONS(1456), + [anon_sym_u128] = ACTIONS(1456), + [anon_sym_i128] = ACTIONS(1456), + [anon_sym_isize] = ACTIONS(1456), + [anon_sym_usize] = ACTIONS(1456), + [anon_sym_f32] = ACTIONS(1456), + [anon_sym_f64] = ACTIONS(1456), + [anon_sym_bool] = ACTIONS(1456), + [anon_sym_str] = ACTIONS(1456), + [anon_sym_char] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_async] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_fn] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_impl] = ACTIONS(1456), + [anon_sym_let] = ACTIONS(1456), + [anon_sym_loop] = ACTIONS(1456), + [anon_sym_match] = ACTIONS(1456), + [anon_sym_mod] = ACTIONS(1456), + [anon_sym_pub] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_trait] = ACTIONS(1456), + [anon_sym_type] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_unsafe] = ACTIONS(1456), + [anon_sym_use] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_COLON_COLON] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_move] = ACTIONS(1456), + [sym_integer_literal] = ACTIONS(1454), + [aux_sym_string_literal_token1] = ACTIONS(1454), + [sym_char_literal] = ACTIONS(1454), + [anon_sym_true] = ACTIONS(1456), + [anon_sym_false] = ACTIONS(1456), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1456), + [sym_super] = ACTIONS(1456), + [sym_crate] = ACTIONS(1456), + [sym_metavariable] = ACTIONS(1454), + [sym_raw_string_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1454), [sym_block_comment] = ACTIONS(3), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_macro_rules_BANG] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_u8] = ACTIONS(1458), - [anon_sym_i8] = ACTIONS(1458), - [anon_sym_u16] = ACTIONS(1458), - [anon_sym_i16] = ACTIONS(1458), - [anon_sym_u32] = ACTIONS(1458), - [anon_sym_i32] = ACTIONS(1458), - [anon_sym_u64] = ACTIONS(1458), - [anon_sym_i64] = ACTIONS(1458), - [anon_sym_u128] = ACTIONS(1458), - [anon_sym_i128] = ACTIONS(1458), - [anon_sym_isize] = ACTIONS(1458), - [anon_sym_usize] = ACTIONS(1458), - [anon_sym_f32] = ACTIONS(1458), - [anon_sym_f64] = ACTIONS(1458), - [anon_sym_bool] = ACTIONS(1458), - [anon_sym_str] = ACTIONS(1458), - [anon_sym_char] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_async] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_fn] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_impl] = ACTIONS(1458), - [anon_sym_let] = ACTIONS(1458), - [anon_sym_loop] = ACTIONS(1458), - [anon_sym_match] = ACTIONS(1458), - [anon_sym_mod] = ACTIONS(1458), - [anon_sym_pub] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_trait] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_unsafe] = ACTIONS(1458), - [anon_sym_use] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_COLON_COLON] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1458), - [anon_sym_move] = ACTIONS(1458), - [sym_integer_literal] = ACTIONS(1456), - [aux_sym_string_literal_token1] = ACTIONS(1456), - [sym_char_literal] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1458), - [anon_sym_false] = ACTIONS(1458), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1458), - [sym_super] = ACTIONS(1458), - [sym_crate] = ACTIONS(1458), - [sym_metavariable] = ACTIONS(1456), - [sym_raw_string_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1456), + [ts_builtin_sym_end] = ACTIONS(1458), + [sym_identifier] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_macro_rules_BANG] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_u8] = ACTIONS(1460), + [anon_sym_i8] = ACTIONS(1460), + [anon_sym_u16] = ACTIONS(1460), + [anon_sym_i16] = ACTIONS(1460), + [anon_sym_u32] = ACTIONS(1460), + [anon_sym_i32] = ACTIONS(1460), + [anon_sym_u64] = ACTIONS(1460), + [anon_sym_i64] = ACTIONS(1460), + [anon_sym_u128] = ACTIONS(1460), + [anon_sym_i128] = ACTIONS(1460), + [anon_sym_isize] = ACTIONS(1460), + [anon_sym_usize] = ACTIONS(1460), + [anon_sym_f32] = ACTIONS(1460), + [anon_sym_f64] = ACTIONS(1460), + [anon_sym_bool] = ACTIONS(1460), + [anon_sym_str] = ACTIONS(1460), + [anon_sym_char] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_fn] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_impl] = ACTIONS(1460), + [anon_sym_let] = ACTIONS(1460), + [anon_sym_loop] = ACTIONS(1460), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_mod] = ACTIONS(1460), + [anon_sym_pub] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_trait] = ACTIONS(1460), + [anon_sym_type] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_unsafe] = ACTIONS(1460), + [anon_sym_use] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_COLON_COLON] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_DOT_DOT] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_yield] = ACTIONS(1460), + [anon_sym_move] = ACTIONS(1460), + [sym_integer_literal] = ACTIONS(1458), + [aux_sym_string_literal_token1] = ACTIONS(1458), + [sym_char_literal] = ACTIONS(1458), + [anon_sym_true] = ACTIONS(1460), + [anon_sym_false] = ACTIONS(1460), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1460), + [sym_super] = ACTIONS(1460), + [sym_crate] = ACTIONS(1460), + [sym_metavariable] = ACTIONS(1458), + [sym_raw_string_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1458), [sym_block_comment] = ACTIONS(3), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_macro_rules_BANG] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_u8] = ACTIONS(1462), - [anon_sym_i8] = ACTIONS(1462), - [anon_sym_u16] = ACTIONS(1462), - [anon_sym_i16] = ACTIONS(1462), - [anon_sym_u32] = ACTIONS(1462), - [anon_sym_i32] = ACTIONS(1462), - [anon_sym_u64] = ACTIONS(1462), - [anon_sym_i64] = ACTIONS(1462), - [anon_sym_u128] = ACTIONS(1462), - [anon_sym_i128] = ACTIONS(1462), - [anon_sym_isize] = ACTIONS(1462), - [anon_sym_usize] = ACTIONS(1462), - [anon_sym_f32] = ACTIONS(1462), - [anon_sym_f64] = ACTIONS(1462), - [anon_sym_bool] = ACTIONS(1462), - [anon_sym_str] = ACTIONS(1462), - [anon_sym_char] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [anon_sym_fn] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_impl] = ACTIONS(1462), - [anon_sym_let] = ACTIONS(1462), - [anon_sym_loop] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_mod] = ACTIONS(1462), - [anon_sym_pub] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_struct] = ACTIONS(1462), - [anon_sym_trait] = ACTIONS(1462), - [anon_sym_type] = ACTIONS(1462), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_unsafe] = ACTIONS(1462), - [anon_sym_use] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_COLON_COLON] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_DOT_DOT] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_move] = ACTIONS(1462), - [sym_integer_literal] = ACTIONS(1460), - [aux_sym_string_literal_token1] = ACTIONS(1460), - [sym_char_literal] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1462), - [anon_sym_false] = ACTIONS(1462), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1462), - [sym_super] = ACTIONS(1462), - [sym_crate] = ACTIONS(1462), - [sym_metavariable] = ACTIONS(1460), - [sym_raw_string_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1460), + [ts_builtin_sym_end] = ACTIONS(1462), + [sym_identifier] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_macro_rules_BANG] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_u8] = ACTIONS(1464), + [anon_sym_i8] = ACTIONS(1464), + [anon_sym_u16] = ACTIONS(1464), + [anon_sym_i16] = ACTIONS(1464), + [anon_sym_u32] = ACTIONS(1464), + [anon_sym_i32] = ACTIONS(1464), + [anon_sym_u64] = ACTIONS(1464), + [anon_sym_i64] = ACTIONS(1464), + [anon_sym_u128] = ACTIONS(1464), + [anon_sym_i128] = ACTIONS(1464), + [anon_sym_isize] = ACTIONS(1464), + [anon_sym_usize] = ACTIONS(1464), + [anon_sym_f32] = ACTIONS(1464), + [anon_sym_f64] = ACTIONS(1464), + [anon_sym_bool] = ACTIONS(1464), + [anon_sym_str] = ACTIONS(1464), + [anon_sym_char] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_fn] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_impl] = ACTIONS(1464), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_loop] = ACTIONS(1464), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_mod] = ACTIONS(1464), + [anon_sym_pub] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_trait] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1464), + [anon_sym_use] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym_LT] = ACTIONS(1462), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_DOT_DOT] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_yield] = ACTIONS(1464), + [anon_sym_move] = ACTIONS(1464), + [sym_integer_literal] = ACTIONS(1462), + [aux_sym_string_literal_token1] = ACTIONS(1462), + [sym_char_literal] = ACTIONS(1462), + [anon_sym_true] = ACTIONS(1464), + [anon_sym_false] = ACTIONS(1464), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1464), + [sym_super] = ACTIONS(1464), + [sym_crate] = ACTIONS(1464), + [sym_metavariable] = ACTIONS(1462), + [sym_raw_string_literal] = ACTIONS(1462), + [sym_float_literal] = ACTIONS(1462), [sym_block_comment] = ACTIONS(3), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_macro_rules_BANG] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_u8] = ACTIONS(1466), - [anon_sym_i8] = ACTIONS(1466), - [anon_sym_u16] = ACTIONS(1466), - [anon_sym_i16] = ACTIONS(1466), - [anon_sym_u32] = ACTIONS(1466), - [anon_sym_i32] = ACTIONS(1466), - [anon_sym_u64] = ACTIONS(1466), - [anon_sym_i64] = ACTIONS(1466), - [anon_sym_u128] = ACTIONS(1466), - [anon_sym_i128] = ACTIONS(1466), - [anon_sym_isize] = ACTIONS(1466), - [anon_sym_usize] = ACTIONS(1466), - [anon_sym_f32] = ACTIONS(1466), - [anon_sym_f64] = ACTIONS(1466), - [anon_sym_bool] = ACTIONS(1466), - [anon_sym_str] = ACTIONS(1466), - [anon_sym_char] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [anon_sym_fn] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_impl] = ACTIONS(1466), - [anon_sym_let] = ACTIONS(1466), - [anon_sym_loop] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_mod] = ACTIONS(1466), - [anon_sym_pub] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_trait] = ACTIONS(1466), - [anon_sym_type] = ACTIONS(1466), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1466), - [anon_sym_use] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_COLON_COLON] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_DOT_DOT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_yield] = ACTIONS(1466), - [anon_sym_move] = ACTIONS(1466), - [sym_integer_literal] = ACTIONS(1464), - [aux_sym_string_literal_token1] = ACTIONS(1464), - [sym_char_literal] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1466), - [anon_sym_false] = ACTIONS(1466), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1466), - [sym_super] = ACTIONS(1466), - [sym_crate] = ACTIONS(1466), - [sym_metavariable] = ACTIONS(1464), - [sym_raw_string_literal] = ACTIONS(1464), - [sym_float_literal] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_macro_rules_BANG] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_u8] = ACTIONS(1468), + [anon_sym_i8] = ACTIONS(1468), + [anon_sym_u16] = ACTIONS(1468), + [anon_sym_i16] = ACTIONS(1468), + [anon_sym_u32] = ACTIONS(1468), + [anon_sym_i32] = ACTIONS(1468), + [anon_sym_u64] = ACTIONS(1468), + [anon_sym_i64] = ACTIONS(1468), + [anon_sym_u128] = ACTIONS(1468), + [anon_sym_i128] = ACTIONS(1468), + [anon_sym_isize] = ACTIONS(1468), + [anon_sym_usize] = ACTIONS(1468), + [anon_sym_f32] = ACTIONS(1468), + [anon_sym_f64] = ACTIONS(1468), + [anon_sym_bool] = ACTIONS(1468), + [anon_sym_str] = ACTIONS(1468), + [anon_sym_char] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_async] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_fn] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_impl] = ACTIONS(1468), + [anon_sym_let] = ACTIONS(1468), + [anon_sym_loop] = ACTIONS(1468), + [anon_sym_match] = ACTIONS(1468), + [anon_sym_mod] = ACTIONS(1468), + [anon_sym_pub] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_trait] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1468), + [anon_sym_use] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_COLON_COLON] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_DOT_DOT] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_yield] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [sym_integer_literal] = ACTIONS(1466), + [aux_sym_string_literal_token1] = ACTIONS(1466), + [sym_char_literal] = ACTIONS(1466), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1468), + [sym_super] = ACTIONS(1468), + [sym_crate] = ACTIONS(1468), + [sym_metavariable] = ACTIONS(1466), + [sym_raw_string_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1466), [sym_block_comment] = ACTIONS(3), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(1468), - [sym_identifier] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_macro_rules_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_u8] = ACTIONS(1470), - [anon_sym_i8] = ACTIONS(1470), - [anon_sym_u16] = ACTIONS(1470), - [anon_sym_i16] = ACTIONS(1470), - [anon_sym_u32] = ACTIONS(1470), - [anon_sym_i32] = ACTIONS(1470), - [anon_sym_u64] = ACTIONS(1470), - [anon_sym_i64] = ACTIONS(1470), - [anon_sym_u128] = ACTIONS(1470), - [anon_sym_i128] = ACTIONS(1470), - [anon_sym_isize] = ACTIONS(1470), - [anon_sym_usize] = ACTIONS(1470), - [anon_sym_f32] = ACTIONS(1470), - [anon_sym_f64] = ACTIONS(1470), - [anon_sym_bool] = ACTIONS(1470), - [anon_sym_str] = ACTIONS(1470), - [anon_sym_char] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_default] = ACTIONS(1470), - [anon_sym_enum] = ACTIONS(1470), - [anon_sym_fn] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_impl] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_mod] = ACTIONS(1470), - [anon_sym_pub] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_static] = ACTIONS(1470), - [anon_sym_struct] = ACTIONS(1470), - [anon_sym_trait] = ACTIONS(1470), - [anon_sym_type] = ACTIONS(1470), - [anon_sym_union] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_COLON_COLON] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_DOT_DOT] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_yield] = ACTIONS(1470), - [anon_sym_move] = ACTIONS(1470), - [sym_integer_literal] = ACTIONS(1468), - [aux_sym_string_literal_token1] = ACTIONS(1468), - [sym_char_literal] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1470), - [sym_super] = ACTIONS(1470), - [sym_crate] = ACTIONS(1470), - [sym_metavariable] = ACTIONS(1468), - [sym_raw_string_literal] = ACTIONS(1468), - [sym_float_literal] = ACTIONS(1468), + [ts_builtin_sym_end] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_macro_rules_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_u8] = ACTIONS(1472), + [anon_sym_i8] = ACTIONS(1472), + [anon_sym_u16] = ACTIONS(1472), + [anon_sym_i16] = ACTIONS(1472), + [anon_sym_u32] = ACTIONS(1472), + [anon_sym_i32] = ACTIONS(1472), + [anon_sym_u64] = ACTIONS(1472), + [anon_sym_i64] = ACTIONS(1472), + [anon_sym_u128] = ACTIONS(1472), + [anon_sym_i128] = ACTIONS(1472), + [anon_sym_isize] = ACTIONS(1472), + [anon_sym_usize] = ACTIONS(1472), + [anon_sym_f32] = ACTIONS(1472), + [anon_sym_f64] = ACTIONS(1472), + [anon_sym_bool] = ACTIONS(1472), + [anon_sym_str] = ACTIONS(1472), + [anon_sym_char] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_async] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_fn] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_impl] = ACTIONS(1472), + [anon_sym_let] = ACTIONS(1472), + [anon_sym_loop] = ACTIONS(1472), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_mod] = ACTIONS(1472), + [anon_sym_pub] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_trait] = ACTIONS(1472), + [anon_sym_type] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_unsafe] = ACTIONS(1472), + [anon_sym_use] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_COLON_COLON] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_move] = ACTIONS(1472), + [sym_integer_literal] = ACTIONS(1470), + [aux_sym_string_literal_token1] = ACTIONS(1470), + [sym_char_literal] = ACTIONS(1470), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1472), + [sym_super] = ACTIONS(1472), + [sym_crate] = ACTIONS(1472), + [sym_metavariable] = ACTIONS(1470), + [sym_raw_string_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1470), [sym_block_comment] = ACTIONS(3), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(1472), - [sym_identifier] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_macro_rules_BANG] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_u8] = ACTIONS(1474), - [anon_sym_i8] = ACTIONS(1474), - [anon_sym_u16] = ACTIONS(1474), - [anon_sym_i16] = ACTIONS(1474), - [anon_sym_u32] = ACTIONS(1474), - [anon_sym_i32] = ACTIONS(1474), - [anon_sym_u64] = ACTIONS(1474), - [anon_sym_i64] = ACTIONS(1474), - [anon_sym_u128] = ACTIONS(1474), - [anon_sym_i128] = ACTIONS(1474), - [anon_sym_isize] = ACTIONS(1474), - [anon_sym_usize] = ACTIONS(1474), - [anon_sym_f32] = ACTIONS(1474), - [anon_sym_f64] = ACTIONS(1474), - [anon_sym_bool] = ACTIONS(1474), - [anon_sym_str] = ACTIONS(1474), - [anon_sym_char] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_async] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_enum] = ACTIONS(1474), - [anon_sym_fn] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_impl] = ACTIONS(1474), - [anon_sym_let] = ACTIONS(1474), - [anon_sym_loop] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_mod] = ACTIONS(1474), - [anon_sym_pub] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_static] = ACTIONS(1474), - [anon_sym_struct] = ACTIONS(1474), - [anon_sym_trait] = ACTIONS(1474), - [anon_sym_type] = ACTIONS(1474), - [anon_sym_union] = ACTIONS(1474), - [anon_sym_unsafe] = ACTIONS(1474), - [anon_sym_use] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_COLON_COLON] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_move] = ACTIONS(1474), - [sym_integer_literal] = ACTIONS(1472), - [aux_sym_string_literal_token1] = ACTIONS(1472), - [sym_char_literal] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1474), - [sym_super] = ACTIONS(1474), - [sym_crate] = ACTIONS(1474), - [sym_metavariable] = ACTIONS(1472), - [sym_raw_string_literal] = ACTIONS(1472), - [sym_float_literal] = ACTIONS(1472), + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_macro_rules_BANG] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_u8] = ACTIONS(1476), + [anon_sym_i8] = ACTIONS(1476), + [anon_sym_u16] = ACTIONS(1476), + [anon_sym_i16] = ACTIONS(1476), + [anon_sym_u32] = ACTIONS(1476), + [anon_sym_i32] = ACTIONS(1476), + [anon_sym_u64] = ACTIONS(1476), + [anon_sym_i64] = ACTIONS(1476), + [anon_sym_u128] = ACTIONS(1476), + [anon_sym_i128] = ACTIONS(1476), + [anon_sym_isize] = ACTIONS(1476), + [anon_sym_usize] = ACTIONS(1476), + [anon_sym_f32] = ACTIONS(1476), + [anon_sym_f64] = ACTIONS(1476), + [anon_sym_bool] = ACTIONS(1476), + [anon_sym_str] = ACTIONS(1476), + [anon_sym_char] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_fn] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_impl] = ACTIONS(1476), + [anon_sym_let] = ACTIONS(1476), + [anon_sym_loop] = ACTIONS(1476), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_mod] = ACTIONS(1476), + [anon_sym_pub] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_trait] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1476), + [anon_sym_use] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_COLON_COLON] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_DOT_DOT] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_move] = ACTIONS(1476), + [sym_integer_literal] = ACTIONS(1474), + [aux_sym_string_literal_token1] = ACTIONS(1474), + [sym_char_literal] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1476), + [sym_super] = ACTIONS(1476), + [sym_crate] = ACTIONS(1476), + [sym_metavariable] = ACTIONS(1474), + [sym_raw_string_literal] = ACTIONS(1474), + [sym_float_literal] = ACTIONS(1474), [sym_block_comment] = ACTIONS(3), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_macro_rules_BANG] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_u8] = ACTIONS(1478), - [anon_sym_i8] = ACTIONS(1478), - [anon_sym_u16] = ACTIONS(1478), - [anon_sym_i16] = ACTIONS(1478), - [anon_sym_u32] = ACTIONS(1478), - [anon_sym_i32] = ACTIONS(1478), - [anon_sym_u64] = ACTIONS(1478), - [anon_sym_i64] = ACTIONS(1478), - [anon_sym_u128] = ACTIONS(1478), - [anon_sym_i128] = ACTIONS(1478), - [anon_sym_isize] = ACTIONS(1478), - [anon_sym_usize] = ACTIONS(1478), - [anon_sym_f32] = ACTIONS(1478), - [anon_sym_f64] = ACTIONS(1478), - [anon_sym_bool] = ACTIONS(1478), - [anon_sym_str] = ACTIONS(1478), - [anon_sym_char] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_async] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_impl] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_pub] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_trait] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_yield] = ACTIONS(1478), - [anon_sym_move] = ACTIONS(1478), - [sym_integer_literal] = ACTIONS(1476), - [aux_sym_string_literal_token1] = ACTIONS(1476), - [sym_char_literal] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1478), - [sym_super] = ACTIONS(1478), - [sym_crate] = ACTIONS(1478), - [sym_metavariable] = ACTIONS(1476), - [sym_raw_string_literal] = ACTIONS(1476), - [sym_float_literal] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_macro_rules_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_u8] = ACTIONS(1480), + [anon_sym_i8] = ACTIONS(1480), + [anon_sym_u16] = ACTIONS(1480), + [anon_sym_i16] = ACTIONS(1480), + [anon_sym_u32] = ACTIONS(1480), + [anon_sym_i32] = ACTIONS(1480), + [anon_sym_u64] = ACTIONS(1480), + [anon_sym_i64] = ACTIONS(1480), + [anon_sym_u128] = ACTIONS(1480), + [anon_sym_i128] = ACTIONS(1480), + [anon_sym_isize] = ACTIONS(1480), + [anon_sym_usize] = ACTIONS(1480), + [anon_sym_f32] = ACTIONS(1480), + [anon_sym_f64] = ACTIONS(1480), + [anon_sym_bool] = ACTIONS(1480), + [anon_sym_str] = ACTIONS(1480), + [anon_sym_char] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_async] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_fn] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_impl] = ACTIONS(1480), + [anon_sym_let] = ACTIONS(1480), + [anon_sym_loop] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_mod] = ACTIONS(1480), + [anon_sym_pub] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_trait] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1480), + [anon_sym_use] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_COLON_COLON] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_yield] = ACTIONS(1480), + [anon_sym_move] = ACTIONS(1480), + [sym_integer_literal] = ACTIONS(1478), + [aux_sym_string_literal_token1] = ACTIONS(1478), + [sym_char_literal] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1480), + [anon_sym_false] = ACTIONS(1480), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1480), + [sym_super] = ACTIONS(1480), + [sym_crate] = ACTIONS(1480), + [sym_metavariable] = ACTIONS(1478), + [sym_raw_string_literal] = ACTIONS(1478), + [sym_float_literal] = ACTIONS(1478), [sym_block_comment] = ACTIONS(3), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_macro_rules_BANG] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_u8] = ACTIONS(1482), - [anon_sym_i8] = ACTIONS(1482), - [anon_sym_u16] = ACTIONS(1482), - [anon_sym_i16] = ACTIONS(1482), - [anon_sym_u32] = ACTIONS(1482), - [anon_sym_i32] = ACTIONS(1482), - [anon_sym_u64] = ACTIONS(1482), - [anon_sym_i64] = ACTIONS(1482), - [anon_sym_u128] = ACTIONS(1482), - [anon_sym_i128] = ACTIONS(1482), - [anon_sym_isize] = ACTIONS(1482), - [anon_sym_usize] = ACTIONS(1482), - [anon_sym_f32] = ACTIONS(1482), - [anon_sym_f64] = ACTIONS(1482), - [anon_sym_bool] = ACTIONS(1482), - [anon_sym_str] = ACTIONS(1482), - [anon_sym_char] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_impl] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_loop] = ACTIONS(1482), - [anon_sym_match] = ACTIONS(1482), - [anon_sym_mod] = ACTIONS(1482), - [anon_sym_pub] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_trait] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_unsafe] = ACTIONS(1482), - [anon_sym_use] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1482), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_COLON_COLON] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_yield] = ACTIONS(1482), - [anon_sym_move] = ACTIONS(1482), - [sym_integer_literal] = ACTIONS(1480), - [aux_sym_string_literal_token1] = ACTIONS(1480), - [sym_char_literal] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_crate] = ACTIONS(1482), - [sym_metavariable] = ACTIONS(1480), - [sym_raw_string_literal] = ACTIONS(1480), - [sym_float_literal] = ACTIONS(1480), + [sym_attribute_item] = STATE(567), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_match_arm] = STATE(506), + [sym_last_match_arm] = STATE(2608), + [sym_match_pattern] = STATE(2416), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2021), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_match_block_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [357] = { @@ -51416,65 +54146,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [361] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_arm] = STATE(501), - [sym_last_match_arm] = STATE(2368), - [sym_match_pattern] = STATE(2369), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), + [ts_builtin_sym_end] = ACTIONS(1500), + [sym_identifier] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_macro_rules_BANG] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_u8] = ACTIONS(1502), + [anon_sym_i8] = ACTIONS(1502), + [anon_sym_u16] = ACTIONS(1502), + [anon_sym_i16] = ACTIONS(1502), + [anon_sym_u32] = ACTIONS(1502), + [anon_sym_i32] = ACTIONS(1502), + [anon_sym_u64] = ACTIONS(1502), + [anon_sym_i64] = ACTIONS(1502), + [anon_sym_u128] = ACTIONS(1502), + [anon_sym_i128] = ACTIONS(1502), + [anon_sym_isize] = ACTIONS(1502), + [anon_sym_usize] = ACTIONS(1502), + [anon_sym_f32] = ACTIONS(1502), + [anon_sym_f64] = ACTIONS(1502), + [anon_sym_bool] = ACTIONS(1502), + [anon_sym_str] = ACTIONS(1502), + [anon_sym_char] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_break] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_continue] = ACTIONS(1502), + [anon_sym_default] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_fn] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(1502), + [anon_sym_impl] = ACTIONS(1502), + [anon_sym_let] = ACTIONS(1502), + [anon_sym_loop] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_mod] = ACTIONS(1502), + [anon_sym_pub] = ACTIONS(1502), + [anon_sym_return] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [anon_sym_trait] = ACTIONS(1502), + [anon_sym_type] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_unsafe] = ACTIONS(1502), + [anon_sym_use] = ACTIONS(1502), + [anon_sym_while] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_COLON_COLON] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_yield] = ACTIONS(1502), + [anon_sym_move] = ACTIONS(1502), + [sym_integer_literal] = ACTIONS(1500), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1500), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1500), + [sym_raw_string_literal] = ACTIONS(1500), + [sym_float_literal] = ACTIONS(1500), + [sym_block_comment] = ACTIONS(3), + }, + [362] = { + [sym_attribute_item] = STATE(567), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_match_arm] = STATE(508), + [sym_last_match_arm] = STATE(2422), + [sym_match_pattern] = STATE(2416), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2021), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_match_block_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -51484,91 +54291,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [362] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_macro_rules_BANG] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_u8] = ACTIONS(1504), - [anon_sym_i8] = ACTIONS(1504), - [anon_sym_u16] = ACTIONS(1504), - [anon_sym_i16] = ACTIONS(1504), - [anon_sym_u32] = ACTIONS(1504), - [anon_sym_i32] = ACTIONS(1504), - [anon_sym_u64] = ACTIONS(1504), - [anon_sym_i64] = ACTIONS(1504), - [anon_sym_u128] = ACTIONS(1504), - [anon_sym_i128] = ACTIONS(1504), - [anon_sym_isize] = ACTIONS(1504), - [anon_sym_usize] = ACTIONS(1504), - [anon_sym_f32] = ACTIONS(1504), - [anon_sym_f64] = ACTIONS(1504), - [anon_sym_bool] = ACTIONS(1504), - [anon_sym_str] = ACTIONS(1504), - [anon_sym_char] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1504), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_fn] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_impl] = ACTIONS(1504), - [anon_sym_let] = ACTIONS(1504), - [anon_sym_loop] = ACTIONS(1504), - [anon_sym_match] = ACTIONS(1504), - [anon_sym_mod] = ACTIONS(1504), - [anon_sym_pub] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_trait] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_unsafe] = ACTIONS(1504), - [anon_sym_use] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_COLON_COLON] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_DOT_DOT] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_yield] = ACTIONS(1504), - [anon_sym_move] = ACTIONS(1504), - [sym_integer_literal] = ACTIONS(1502), - [aux_sym_string_literal_token1] = ACTIONS(1502), - [sym_char_literal] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1504), - [sym_super] = ACTIONS(1504), - [sym_crate] = ACTIONS(1504), - [sym_metavariable] = ACTIONS(1502), - [sym_raw_string_literal] = ACTIONS(1502), - [sym_float_literal] = ACTIONS(1502), - [sym_block_comment] = ACTIONS(3), - }, [363] = { [ts_builtin_sym_end] = ACTIONS(1506), [sym_identifier] = ACTIONS(1508), @@ -55189,83 +57919,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(554), - [sym_identifier] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_macro_rules_BANG] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_SQUOTE] = ACTIONS(556), - [anon_sym_async] = ACTIONS(556), - [anon_sym_break] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_continue] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_enum] = ACTIONS(556), - [anon_sym_fn] = ACTIONS(556), - [anon_sym_for] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_impl] = ACTIONS(556), - [anon_sym_let] = ACTIONS(556), - [anon_sym_loop] = ACTIONS(556), - [anon_sym_match] = ACTIONS(556), - [anon_sym_mod] = ACTIONS(556), - [anon_sym_pub] = ACTIONS(556), - [anon_sym_return] = ACTIONS(556), - [anon_sym_static] = ACTIONS(556), - [anon_sym_struct] = ACTIONS(556), - [anon_sym_trait] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_unsafe] = ACTIONS(556), - [anon_sym_use] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_BANG] = ACTIONS(554), - [anon_sym_extern] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(554), - [anon_sym_DOT_DOT] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(554), - [anon_sym_yield] = ACTIONS(556), - [anon_sym_move] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), - [sym_block_comment] = ACTIONS(3), - }, - [411] = { [ts_builtin_sym_end] = ACTIONS(1694), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1694), @@ -55342,7 +57995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1694), [sym_block_comment] = ACTIONS(3), }, - [412] = { + [411] = { [ts_builtin_sym_end] = ACTIONS(1698), [sym_identifier] = ACTIONS(1700), [anon_sym_SEMI] = ACTIONS(1698), @@ -55419,7 +58072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1698), [sym_block_comment] = ACTIONS(3), }, - [413] = { + [412] = { [ts_builtin_sym_end] = ACTIONS(1702), [sym_identifier] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1702), @@ -55496,84 +58149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1702), [sym_block_comment] = ACTIONS(3), }, - [414] = { - [ts_builtin_sym_end] = ACTIONS(542), - [sym_identifier] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(542), - [anon_sym_macro_rules_BANG] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_u8] = ACTIONS(544), - [anon_sym_i8] = ACTIONS(544), - [anon_sym_u16] = ACTIONS(544), - [anon_sym_i16] = ACTIONS(544), - [anon_sym_u32] = ACTIONS(544), - [anon_sym_i32] = ACTIONS(544), - [anon_sym_u64] = ACTIONS(544), - [anon_sym_i64] = ACTIONS(544), - [anon_sym_u128] = ACTIONS(544), - [anon_sym_i128] = ACTIONS(544), - [anon_sym_isize] = ACTIONS(544), - [anon_sym_usize] = ACTIONS(544), - [anon_sym_f32] = ACTIONS(544), - [anon_sym_f64] = ACTIONS(544), - [anon_sym_bool] = ACTIONS(544), - [anon_sym_str] = ACTIONS(544), - [anon_sym_char] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_async] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_const] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_default] = ACTIONS(544), - [anon_sym_enum] = ACTIONS(544), - [anon_sym_fn] = ACTIONS(544), - [anon_sym_for] = ACTIONS(544), - [anon_sym_if] = ACTIONS(544), - [anon_sym_impl] = ACTIONS(544), - [anon_sym_let] = ACTIONS(544), - [anon_sym_loop] = ACTIONS(544), - [anon_sym_match] = ACTIONS(544), - [anon_sym_mod] = ACTIONS(544), - [anon_sym_pub] = ACTIONS(544), - [anon_sym_return] = ACTIONS(544), - [anon_sym_static] = ACTIONS(544), - [anon_sym_struct] = ACTIONS(544), - [anon_sym_trait] = ACTIONS(544), - [anon_sym_type] = ACTIONS(544), - [anon_sym_union] = ACTIONS(544), - [anon_sym_unsafe] = ACTIONS(544), - [anon_sym_use] = ACTIONS(544), - [anon_sym_while] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_COLON_COLON] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_DOT_DOT] = ACTIONS(542), - [anon_sym_DASH] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(542), - [anon_sym_yield] = ACTIONS(544), - [anon_sym_move] = ACTIONS(544), - [sym_integer_literal] = ACTIONS(542), - [aux_sym_string_literal_token1] = ACTIONS(542), - [sym_char_literal] = ACTIONS(542), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(544), - [sym_super] = ACTIONS(544), - [sym_crate] = ACTIONS(544), - [sym_metavariable] = ACTIONS(542), - [sym_raw_string_literal] = ACTIONS(542), - [sym_float_literal] = ACTIONS(542), - [sym_block_comment] = ACTIONS(3), - }, - [415] = { + [413] = { [ts_builtin_sym_end] = ACTIONS(1706), [sym_identifier] = ACTIONS(1708), [anon_sym_SEMI] = ACTIONS(1706), @@ -55650,7 +58226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1706), [sym_block_comment] = ACTIONS(3), }, - [416] = { + [414] = { [ts_builtin_sym_end] = ACTIONS(1710), [sym_identifier] = ACTIONS(1712), [anon_sym_SEMI] = ACTIONS(1710), @@ -55727,7 +58303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1710), [sym_block_comment] = ACTIONS(3), }, - [417] = { + [415] = { [ts_builtin_sym_end] = ACTIONS(1714), [sym_identifier] = ACTIONS(1716), [anon_sym_SEMI] = ACTIONS(1714), @@ -55804,7 +58380,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1714), [sym_block_comment] = ACTIONS(3), }, - [418] = { + [416] = { + [ts_builtin_sym_end] = ACTIONS(536), + [sym_identifier] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_macro_rules_BANG] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_STAR] = ACTIONS(536), + [anon_sym_u8] = ACTIONS(538), + [anon_sym_i8] = ACTIONS(538), + [anon_sym_u16] = ACTIONS(538), + [anon_sym_i16] = ACTIONS(538), + [anon_sym_u32] = ACTIONS(538), + [anon_sym_i32] = ACTIONS(538), + [anon_sym_u64] = ACTIONS(538), + [anon_sym_i64] = ACTIONS(538), + [anon_sym_u128] = ACTIONS(538), + [anon_sym_i128] = ACTIONS(538), + [anon_sym_isize] = ACTIONS(538), + [anon_sym_usize] = ACTIONS(538), + [anon_sym_f32] = ACTIONS(538), + [anon_sym_f64] = ACTIONS(538), + [anon_sym_bool] = ACTIONS(538), + [anon_sym_str] = ACTIONS(538), + [anon_sym_char] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(538), + [anon_sym_async] = ACTIONS(538), + [anon_sym_break] = ACTIONS(538), + [anon_sym_const] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(538), + [anon_sym_default] = ACTIONS(538), + [anon_sym_enum] = ACTIONS(538), + [anon_sym_fn] = ACTIONS(538), + [anon_sym_for] = ACTIONS(538), + [anon_sym_if] = ACTIONS(538), + [anon_sym_impl] = ACTIONS(538), + [anon_sym_let] = ACTIONS(538), + [anon_sym_loop] = ACTIONS(538), + [anon_sym_match] = ACTIONS(538), + [anon_sym_mod] = ACTIONS(538), + [anon_sym_pub] = ACTIONS(538), + [anon_sym_return] = ACTIONS(538), + [anon_sym_static] = ACTIONS(538), + [anon_sym_struct] = ACTIONS(538), + [anon_sym_trait] = ACTIONS(538), + [anon_sym_type] = ACTIONS(538), + [anon_sym_union] = ACTIONS(538), + [anon_sym_unsafe] = ACTIONS(538), + [anon_sym_use] = ACTIONS(538), + [anon_sym_while] = ACTIONS(538), + [anon_sym_POUND] = ACTIONS(536), + [anon_sym_BANG] = ACTIONS(536), + [anon_sym_extern] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_COLON_COLON] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(536), + [anon_sym_DOT_DOT] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(536), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_yield] = ACTIONS(538), + [anon_sym_move] = ACTIONS(538), + [sym_integer_literal] = ACTIONS(536), + [aux_sym_string_literal_token1] = ACTIONS(536), + [sym_char_literal] = ACTIONS(536), + [anon_sym_true] = ACTIONS(538), + [anon_sym_false] = ACTIONS(538), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(538), + [sym_super] = ACTIONS(538), + [sym_crate] = ACTIONS(538), + [sym_metavariable] = ACTIONS(536), + [sym_raw_string_literal] = ACTIONS(536), + [sym_float_literal] = ACTIONS(536), + [sym_block_comment] = ACTIONS(3), + }, + [417] = { [ts_builtin_sym_end] = ACTIONS(1718), [sym_identifier] = ACTIONS(1720), [anon_sym_SEMI] = ACTIONS(1718), @@ -55881,7 +58534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1718), [sym_block_comment] = ACTIONS(3), }, - [419] = { + [418] = { [ts_builtin_sym_end] = ACTIONS(1722), [sym_identifier] = ACTIONS(1724), [anon_sym_SEMI] = ACTIONS(1722), @@ -55958,7 +58611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1722), [sym_block_comment] = ACTIONS(3), }, - [420] = { + [419] = { [ts_builtin_sym_end] = ACTIONS(1726), [sym_identifier] = ACTIONS(1728), [anon_sym_SEMI] = ACTIONS(1726), @@ -56035,84 +58688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1726), [sym_block_comment] = ACTIONS(3), }, - [421] = { - [ts_builtin_sym_end] = ACTIONS(548), - [sym_identifier] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_macro_rules_BANG] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_u8] = ACTIONS(550), - [anon_sym_i8] = ACTIONS(550), - [anon_sym_u16] = ACTIONS(550), - [anon_sym_i16] = ACTIONS(550), - [anon_sym_u32] = ACTIONS(550), - [anon_sym_i32] = ACTIONS(550), - [anon_sym_u64] = ACTIONS(550), - [anon_sym_i64] = ACTIONS(550), - [anon_sym_u128] = ACTIONS(550), - [anon_sym_i128] = ACTIONS(550), - [anon_sym_isize] = ACTIONS(550), - [anon_sym_usize] = ACTIONS(550), - [anon_sym_f32] = ACTIONS(550), - [anon_sym_f64] = ACTIONS(550), - [anon_sym_bool] = ACTIONS(550), - [anon_sym_str] = ACTIONS(550), - [anon_sym_char] = ACTIONS(550), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_async] = ACTIONS(550), - [anon_sym_break] = ACTIONS(550), - [anon_sym_const] = ACTIONS(550), - [anon_sym_continue] = ACTIONS(550), - [anon_sym_default] = ACTIONS(550), - [anon_sym_enum] = ACTIONS(550), - [anon_sym_fn] = ACTIONS(550), - [anon_sym_for] = ACTIONS(550), - [anon_sym_if] = ACTIONS(550), - [anon_sym_impl] = ACTIONS(550), - [anon_sym_let] = ACTIONS(550), - [anon_sym_loop] = ACTIONS(550), - [anon_sym_match] = ACTIONS(550), - [anon_sym_mod] = ACTIONS(550), - [anon_sym_pub] = ACTIONS(550), - [anon_sym_return] = ACTIONS(550), - [anon_sym_static] = ACTIONS(550), - [anon_sym_struct] = ACTIONS(550), - [anon_sym_trait] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_union] = ACTIONS(550), - [anon_sym_unsafe] = ACTIONS(550), - [anon_sym_use] = ACTIONS(550), - [anon_sym_while] = ACTIONS(550), - [anon_sym_POUND] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(548), - [anon_sym_extern] = ACTIONS(550), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_COLON_COLON] = ACTIONS(548), - [anon_sym_AMP] = ACTIONS(548), - [anon_sym_DOT_DOT] = ACTIONS(548), - [anon_sym_DASH] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_yield] = ACTIONS(550), - [anon_sym_move] = ACTIONS(550), - [sym_integer_literal] = ACTIONS(548), - [aux_sym_string_literal_token1] = ACTIONS(548), - [sym_char_literal] = ACTIONS(548), - [anon_sym_true] = ACTIONS(550), - [anon_sym_false] = ACTIONS(550), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(550), - [sym_super] = ACTIONS(550), - [sym_crate] = ACTIONS(550), - [sym_metavariable] = ACTIONS(548), - [sym_raw_string_literal] = ACTIONS(548), - [sym_float_literal] = ACTIONS(548), - [sym_block_comment] = ACTIONS(3), - }, - [422] = { + [420] = { [ts_builtin_sym_end] = ACTIONS(1730), [sym_identifier] = ACTIONS(1732), [anon_sym_SEMI] = ACTIONS(1730), @@ -56189,7 +58765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1730), [sym_block_comment] = ACTIONS(3), }, - [423] = { + [421] = { [ts_builtin_sym_end] = ACTIONS(1734), [sym_identifier] = ACTIONS(1736), [anon_sym_SEMI] = ACTIONS(1734), @@ -56266,7 +58842,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1734), [sym_block_comment] = ACTIONS(3), }, - [424] = { + [422] = { + [ts_builtin_sym_end] = ACTIONS(544), + [sym_identifier] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(544), + [anon_sym_macro_rules_BANG] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_u8] = ACTIONS(546), + [anon_sym_i8] = ACTIONS(546), + [anon_sym_u16] = ACTIONS(546), + [anon_sym_i16] = ACTIONS(546), + [anon_sym_u32] = ACTIONS(546), + [anon_sym_i32] = ACTIONS(546), + [anon_sym_u64] = ACTIONS(546), + [anon_sym_i64] = ACTIONS(546), + [anon_sym_u128] = ACTIONS(546), + [anon_sym_i128] = ACTIONS(546), + [anon_sym_isize] = ACTIONS(546), + [anon_sym_usize] = ACTIONS(546), + [anon_sym_f32] = ACTIONS(546), + [anon_sym_f64] = ACTIONS(546), + [anon_sym_bool] = ACTIONS(546), + [anon_sym_str] = ACTIONS(546), + [anon_sym_char] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(546), + [anon_sym_async] = ACTIONS(546), + [anon_sym_break] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_default] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(546), + [anon_sym_fn] = ACTIONS(546), + [anon_sym_for] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_impl] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_loop] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_mod] = ACTIONS(546), + [anon_sym_pub] = ACTIONS(546), + [anon_sym_return] = ACTIONS(546), + [anon_sym_static] = ACTIONS(546), + [anon_sym_struct] = ACTIONS(546), + [anon_sym_trait] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_union] = ACTIONS(546), + [anon_sym_unsafe] = ACTIONS(546), + [anon_sym_use] = ACTIONS(546), + [anon_sym_while] = ACTIONS(546), + [anon_sym_POUND] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(544), + [anon_sym_extern] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(544), + [anon_sym_COLON_COLON] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(544), + [anon_sym_DASH] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(544), + [anon_sym_yield] = ACTIONS(546), + [anon_sym_move] = ACTIONS(546), + [sym_integer_literal] = ACTIONS(544), + [aux_sym_string_literal_token1] = ACTIONS(544), + [sym_char_literal] = ACTIONS(544), + [anon_sym_true] = ACTIONS(546), + [anon_sym_false] = ACTIONS(546), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(546), + [sym_super] = ACTIONS(546), + [sym_crate] = ACTIONS(546), + [sym_metavariable] = ACTIONS(544), + [sym_raw_string_literal] = ACTIONS(544), + [sym_float_literal] = ACTIONS(544), + [sym_block_comment] = ACTIONS(3), + }, + [423] = { [ts_builtin_sym_end] = ACTIONS(1738), [sym_identifier] = ACTIONS(1740), [anon_sym_SEMI] = ACTIONS(1738), @@ -56343,7 +58996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1738), [sym_block_comment] = ACTIONS(3), }, - [425] = { + [424] = { [ts_builtin_sym_end] = ACTIONS(1742), [sym_identifier] = ACTIONS(1744), [anon_sym_SEMI] = ACTIONS(1742), @@ -56420,7 +59073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1742), [sym_block_comment] = ACTIONS(3), }, - [426] = { + [425] = { [ts_builtin_sym_end] = ACTIONS(1746), [sym_identifier] = ACTIONS(1748), [anon_sym_SEMI] = ACTIONS(1746), @@ -56497,7 +59150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1746), [sym_block_comment] = ACTIONS(3), }, - [427] = { + [426] = { [ts_builtin_sym_end] = ACTIONS(1750), [sym_identifier] = ACTIONS(1752), [anon_sym_SEMI] = ACTIONS(1750), @@ -56574,7 +59227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1750), [sym_block_comment] = ACTIONS(3), }, - [428] = { + [427] = { [ts_builtin_sym_end] = ACTIONS(1754), [sym_identifier] = ACTIONS(1756), [anon_sym_SEMI] = ACTIONS(1754), @@ -56651,7 +59304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1754), [sym_block_comment] = ACTIONS(3), }, - [429] = { + [428] = { [ts_builtin_sym_end] = ACTIONS(1758), [sym_identifier] = ACTIONS(1760), [anon_sym_SEMI] = ACTIONS(1758), @@ -56728,7 +59381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1758), [sym_block_comment] = ACTIONS(3), }, - [430] = { + [429] = { [ts_builtin_sym_end] = ACTIONS(1762), [sym_identifier] = ACTIONS(1764), [anon_sym_SEMI] = ACTIONS(1762), @@ -56805,7 +59458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1762), [sym_block_comment] = ACTIONS(3), }, - [431] = { + [430] = { [ts_builtin_sym_end] = ACTIONS(1766), [sym_identifier] = ACTIONS(1768), [anon_sym_SEMI] = ACTIONS(1766), @@ -56882,7 +59535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1766), [sym_block_comment] = ACTIONS(3), }, - [432] = { + [431] = { [ts_builtin_sym_end] = ACTIONS(1770), [sym_identifier] = ACTIONS(1772), [anon_sym_SEMI] = ACTIONS(1770), @@ -56959,7 +59612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1770), [sym_block_comment] = ACTIONS(3), }, - [433] = { + [432] = { [ts_builtin_sym_end] = ACTIONS(1774), [sym_identifier] = ACTIONS(1776), [anon_sym_SEMI] = ACTIONS(1774), @@ -57036,7 +59689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1774), [sym_block_comment] = ACTIONS(3), }, - [434] = { + [433] = { [ts_builtin_sym_end] = ACTIONS(1778), [sym_identifier] = ACTIONS(1780), [anon_sym_SEMI] = ACTIONS(1778), @@ -57113,7 +59766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1778), [sym_block_comment] = ACTIONS(3), }, - [435] = { + [434] = { [ts_builtin_sym_end] = ACTIONS(1782), [sym_identifier] = ACTIONS(1784), [anon_sym_SEMI] = ACTIONS(1782), @@ -57190,7 +59843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1782), [sym_block_comment] = ACTIONS(3), }, - [436] = { + [435] = { [ts_builtin_sym_end] = ACTIONS(1786), [sym_identifier] = ACTIONS(1788), [anon_sym_SEMI] = ACTIONS(1786), @@ -57267,6 +59920,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1786), [sym_block_comment] = ACTIONS(3), }, + [436] = { + [ts_builtin_sym_end] = ACTIONS(550), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_macro_rules_BANG] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [anon_sym_POUND] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_extern] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_COLON_COLON] = ACTIONS(550), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_DOT_DOT] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_yield] = ACTIONS(552), + [anon_sym_move] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(550), + [aux_sym_string_literal_token1] = ACTIONS(550), + [sym_char_literal] = ACTIONS(550), + [anon_sym_true] = ACTIONS(552), + [anon_sym_false] = ACTIONS(552), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(550), + [sym_raw_string_literal] = ACTIONS(550), + [sym_float_literal] = ACTIONS(550), + [sym_block_comment] = ACTIONS(3), + }, [437] = { [ts_builtin_sym_end] = ACTIONS(1790), [sym_identifier] = ACTIONS(1792), @@ -61657,248 +64387,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [494] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_arm] = STATE(513), - [sym_last_match_arm] = STATE(2435), - [sym_match_pattern] = STATE(2369), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [ts_builtin_sym_end] = ACTIONS(2018), + [sym_identifier] = ACTIONS(2020), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_macro_rules_BANG] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2020), + [anon_sym_i8] = ACTIONS(2020), + [anon_sym_u16] = ACTIONS(2020), + [anon_sym_i16] = ACTIONS(2020), + [anon_sym_u32] = ACTIONS(2020), + [anon_sym_i32] = ACTIONS(2020), + [anon_sym_u64] = ACTIONS(2020), + [anon_sym_i64] = ACTIONS(2020), + [anon_sym_u128] = ACTIONS(2020), + [anon_sym_i128] = ACTIONS(2020), + [anon_sym_isize] = ACTIONS(2020), + [anon_sym_usize] = ACTIONS(2020), + [anon_sym_f32] = ACTIONS(2020), + [anon_sym_f64] = ACTIONS(2020), + [anon_sym_bool] = ACTIONS(2020), + [anon_sym_str] = ACTIONS(2020), + [anon_sym_char] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_default] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2020), + [anon_sym_fn] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_impl] = ACTIONS(2020), + [anon_sym_let] = ACTIONS(2020), + [anon_sym_loop] = ACTIONS(2020), + [anon_sym_match] = ACTIONS(2020), + [anon_sym_mod] = ACTIONS(2020), + [anon_sym_pub] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2020), + [anon_sym_struct] = ACTIONS(2020), + [anon_sym_trait] = ACTIONS(2020), + [anon_sym_type] = ACTIONS(2020), + [anon_sym_union] = ACTIONS(2020), + [anon_sym_unsafe] = ACTIONS(2020), + [anon_sym_use] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2018), + [anon_sym_COLON_COLON] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_DOT_DOT] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2018), + [anon_sym_PIPE] = ACTIONS(2018), + [anon_sym_yield] = ACTIONS(2020), + [anon_sym_move] = ACTIONS(2020), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2018), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2020), + [anon_sym_false] = ACTIONS(2020), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2020), + [sym_super] = ACTIONS(2020), + [sym_crate] = ACTIONS(2020), + [sym_metavariable] = ACTIONS(2018), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), [sym_block_comment] = ACTIONS(3), }, [495] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_RBRACE] = ACTIONS(2024), - [anon_sym_LBRACK] = ACTIONS(2029), - [anon_sym_RBRACK] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2032), - [anon_sym_u8] = ACTIONS(2018), - [anon_sym_i8] = ACTIONS(2018), - [anon_sym_u16] = ACTIONS(2018), - [anon_sym_i16] = ACTIONS(2018), - [anon_sym_u32] = ACTIONS(2018), - [anon_sym_i32] = ACTIONS(2018), - [anon_sym_u64] = ACTIONS(2018), - [anon_sym_i64] = ACTIONS(2018), - [anon_sym_u128] = ACTIONS(2018), - [anon_sym_i128] = ACTIONS(2018), - [anon_sym_isize] = ACTIONS(2018), - [anon_sym_usize] = ACTIONS(2018), - [anon_sym_f32] = ACTIONS(2018), - [anon_sym_f64] = ACTIONS(2018), - [anon_sym_bool] = ACTIONS(2018), - [anon_sym_str] = ACTIONS(2018), - [anon_sym_char] = ACTIONS(2018), - [aux_sym__non_special_token_token1] = ACTIONS(2018), - [anon_sym_SQUOTE] = ACTIONS(2018), - [anon_sym_as] = ACTIONS(2018), - [anon_sym_async] = ACTIONS(2018), - [anon_sym_await] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_default] = ACTIONS(2018), - [anon_sym_enum] = ACTIONS(2018), - [anon_sym_fn] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_impl] = ACTIONS(2018), - [anon_sym_let] = ACTIONS(2018), - [anon_sym_loop] = ACTIONS(2018), - [anon_sym_match] = ACTIONS(2018), - [anon_sym_mod] = ACTIONS(2018), - [anon_sym_pub] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_static] = ACTIONS(2018), - [anon_sym_struct] = ACTIONS(2018), - [anon_sym_trait] = ACTIONS(2018), - [anon_sym_type] = ACTIONS(2018), - [anon_sym_union] = ACTIONS(2018), - [anon_sym_unsafe] = ACTIONS(2018), - [anon_sym_use] = ACTIONS(2018), - [anon_sym_where] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [sym_mutable_specifier] = ACTIONS(2018), - [sym_integer_literal] = ACTIONS(2035), - [aux_sym_string_literal_token1] = ACTIONS(2038), - [sym_char_literal] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2018), - [sym_super] = ACTIONS(2018), - [sym_crate] = ACTIONS(2018), - [sym_raw_string_literal] = ACTIONS(2035), - [sym_float_literal] = ACTIONS(2035), + [ts_builtin_sym_end] = ACTIONS(2022), + [sym_identifier] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym_macro_rules_BANG] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2022), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_u8] = ACTIONS(2024), + [anon_sym_i8] = ACTIONS(2024), + [anon_sym_u16] = ACTIONS(2024), + [anon_sym_i16] = ACTIONS(2024), + [anon_sym_u32] = ACTIONS(2024), + [anon_sym_i32] = ACTIONS(2024), + [anon_sym_u64] = ACTIONS(2024), + [anon_sym_i64] = ACTIONS(2024), + [anon_sym_u128] = ACTIONS(2024), + [anon_sym_i128] = ACTIONS(2024), + [anon_sym_isize] = ACTIONS(2024), + [anon_sym_usize] = ACTIONS(2024), + [anon_sym_f32] = ACTIONS(2024), + [anon_sym_f64] = ACTIONS(2024), + [anon_sym_bool] = ACTIONS(2024), + [anon_sym_str] = ACTIONS(2024), + [anon_sym_char] = ACTIONS(2024), + [anon_sym_SQUOTE] = ACTIONS(2024), + [anon_sym_async] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_default] = ACTIONS(2024), + [anon_sym_enum] = ACTIONS(2024), + [anon_sym_fn] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_impl] = ACTIONS(2024), + [anon_sym_let] = ACTIONS(2024), + [anon_sym_loop] = ACTIONS(2024), + [anon_sym_match] = ACTIONS(2024), + [anon_sym_mod] = ACTIONS(2024), + [anon_sym_pub] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2024), + [anon_sym_static] = ACTIONS(2024), + [anon_sym_struct] = ACTIONS(2024), + [anon_sym_trait] = ACTIONS(2024), + [anon_sym_type] = ACTIONS(2024), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_unsafe] = ACTIONS(2024), + [anon_sym_use] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_POUND] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2022), + [anon_sym_COLON_COLON] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_DOT_DOT] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2022), + [anon_sym_yield] = ACTIONS(2024), + [anon_sym_move] = ACTIONS(2024), + [sym_integer_literal] = ACTIONS(2022), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2022), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2024), + [sym_super] = ACTIONS(2024), + [sym_crate] = ACTIONS(2024), + [sym_metavariable] = ACTIONS(2022), + [sym_raw_string_literal] = ACTIONS(2022), + [sym_float_literal] = ACTIONS(2022), [sym_block_comment] = ACTIONS(3), }, [496] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_arm] = STATE(513), - [sym_last_match_arm] = STATE(2568), - [sym_match_pattern] = STATE(2369), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [ts_builtin_sym_end] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_macro_rules_BANG] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_u8] = ACTIONS(2028), + [anon_sym_i8] = ACTIONS(2028), + [anon_sym_u16] = ACTIONS(2028), + [anon_sym_i16] = ACTIONS(2028), + [anon_sym_u32] = ACTIONS(2028), + [anon_sym_i32] = ACTIONS(2028), + [anon_sym_u64] = ACTIONS(2028), + [anon_sym_i64] = ACTIONS(2028), + [anon_sym_u128] = ACTIONS(2028), + [anon_sym_i128] = ACTIONS(2028), + [anon_sym_isize] = ACTIONS(2028), + [anon_sym_usize] = ACTIONS(2028), + [anon_sym_f32] = ACTIONS(2028), + [anon_sym_f64] = ACTIONS(2028), + [anon_sym_bool] = ACTIONS(2028), + [anon_sym_str] = ACTIONS(2028), + [anon_sym_char] = ACTIONS(2028), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_async] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_fn] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_impl] = ACTIONS(2028), + [anon_sym_let] = ACTIONS(2028), + [anon_sym_loop] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_mod] = ACTIONS(2028), + [anon_sym_pub] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_trait] = ACTIONS(2028), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_unsafe] = ACTIONS(2028), + [anon_sym_use] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_POUND] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2026), + [anon_sym_COLON_COLON] = ACTIONS(2026), + [anon_sym_AMP] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2026), + [anon_sym_yield] = ACTIONS(2028), + [anon_sym_move] = ACTIONS(2028), + [sym_integer_literal] = ACTIONS(2026), + [aux_sym_string_literal_token1] = ACTIONS(2026), + [sym_char_literal] = ACTIONS(2026), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_crate] = ACTIONS(2028), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2026), + [sym_float_literal] = ACTIONS(2026), [sym_block_comment] = ACTIONS(3), }, [497] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), + [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_LBRACE] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = 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_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_POUND] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_DOT_DOT] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2030), + [anon_sym_yield] = ACTIONS(2032), + [anon_sym_move] = ACTIONS(2032), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2030), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2032), + [anon_sym_false] = ACTIONS(2032), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_crate] = ACTIONS(2032), + [sym_metavariable] = ACTIONS(2030), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [498] = { + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_macro_rules_BANG] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2034), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2034), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_DOT_DOT] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2034), + [anon_sym_yield] = ACTIONS(2036), + [anon_sym_move] = ACTIONS(2036), + [sym_integer_literal] = ACTIONS(2034), + [aux_sym_string_literal_token1] = ACTIONS(2034), + [sym_char_literal] = ACTIONS(2034), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), + [sym_metavariable] = ACTIONS(2034), + [sym_raw_string_literal] = ACTIONS(2034), + [sym_float_literal] = ACTIONS(2034), + [sym_block_comment] = ACTIONS(3), + }, + [499] = { + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2040), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_macro_rules_BANG] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2038), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_u8] = ACTIONS(2040), + [anon_sym_i8] = ACTIONS(2040), + [anon_sym_u16] = ACTIONS(2040), + [anon_sym_i16] = ACTIONS(2040), + [anon_sym_u32] = ACTIONS(2040), + [anon_sym_i32] = ACTIONS(2040), + [anon_sym_u64] = ACTIONS(2040), + [anon_sym_i64] = ACTIONS(2040), + [anon_sym_u128] = ACTIONS(2040), + [anon_sym_i128] = ACTIONS(2040), + [anon_sym_isize] = ACTIONS(2040), + [anon_sym_usize] = ACTIONS(2040), + [anon_sym_f32] = ACTIONS(2040), + [anon_sym_f64] = ACTIONS(2040), + [anon_sym_bool] = ACTIONS(2040), + [anon_sym_str] = ACTIONS(2040), + [anon_sym_char] = ACTIONS(2040), + [anon_sym_SQUOTE] = ACTIONS(2040), + [anon_sym_async] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_fn] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_impl] = ACTIONS(2040), + [anon_sym_let] = ACTIONS(2040), + [anon_sym_loop] = ACTIONS(2040), + [anon_sym_match] = ACTIONS(2040), + [anon_sym_mod] = ACTIONS(2040), + [anon_sym_pub] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_trait] = ACTIONS(2040), + [anon_sym_type] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_unsafe] = ACTIONS(2040), + [anon_sym_use] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2040), + [anon_sym_LT] = ACTIONS(2038), + [anon_sym_COLON_COLON] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_DOT_DOT] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2038), + [anon_sym_PIPE] = ACTIONS(2038), + [anon_sym_yield] = ACTIONS(2040), + [anon_sym_move] = ACTIONS(2040), + [sym_integer_literal] = ACTIONS(2038), + [aux_sym_string_literal_token1] = ACTIONS(2038), + [sym_char_literal] = ACTIONS(2038), + [anon_sym_true] = ACTIONS(2040), + [anon_sym_false] = ACTIONS(2040), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2040), + [sym_super] = ACTIONS(2040), + [sym_crate] = ACTIONS(2040), + [sym_metavariable] = ACTIONS(2038), + [sym_raw_string_literal] = ACTIONS(2038), + [sym_float_literal] = ACTIONS(2038), + [sym_block_comment] = ACTIONS(3), + }, + [500] = { + [ts_builtin_sym_end] = ACTIONS(2042), [sym_identifier] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_RPAREN] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_RBRACK] = ACTIONS(2050), - [anon_sym_DOLLAR] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_macro_rules_BANG] = ACTIONS(2042), + [anon_sym_LPAREN] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2042), + [anon_sym_LBRACK] = ACTIONS(2042), + [anon_sym_STAR] = ACTIONS(2042), [anon_sym_u8] = ACTIONS(2044), [anon_sym_i8] = ACTIONS(2044), [anon_sym_u16] = ACTIONS(2044), @@ -61916,11 +64875,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2044), [anon_sym_str] = ACTIONS(2044), [anon_sym_char] = ACTIONS(2044), - [aux_sym__non_special_token_token1] = ACTIONS(2044), [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_as] = ACTIONS(2044), [anon_sym_async] = ACTIONS(2044), - [anon_sym_await] = ACTIONS(2044), [anon_sym_break] = ACTIONS(2044), [anon_sym_const] = ACTIONS(2044), [anon_sym_continue] = ACTIONS(2044), @@ -61943,310 +64899,472 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2044), [anon_sym_unsafe] = ACTIONS(2044), [anon_sym_use] = ACTIONS(2044), - [anon_sym_where] = ACTIONS(2044), [anon_sym_while] = ACTIONS(2044), - [sym_mutable_specifier] = ACTIONS(2044), - [sym_integer_literal] = ACTIONS(2061), - [aux_sym_string_literal_token1] = ACTIONS(2064), - [sym_char_literal] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(2067), - [anon_sym_false] = ACTIONS(2067), - [sym_line_comment] = ACTIONS(1097), + [anon_sym_POUND] = ACTIONS(2042), + [anon_sym_BANG] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym_LT] = ACTIONS(2042), + [anon_sym_COLON_COLON] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2042), + [anon_sym_PIPE] = ACTIONS(2042), + [anon_sym_yield] = ACTIONS(2044), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2044), [sym_super] = ACTIONS(2044), [sym_crate] = ACTIONS(2044), - [sym_metavariable] = ACTIONS(2070), - [sym_raw_string_literal] = ACTIONS(2061), - [sym_float_literal] = ACTIONS(2061), + [sym_metavariable] = ACTIONS(2042), + [sym_raw_string_literal] = ACTIONS(2042), + [sym_float_literal] = ACTIONS(2042), [sym_block_comment] = ACTIONS(3), }, - [498] = { - [sym__token_pattern] = STATE(502), - [sym_token_tree_pattern] = STATE(502), - [sym_token_binding_pattern] = STATE(502), - [sym_token_repetition_pattern] = STATE(502), + [501] = { + [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_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = 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_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_POUND] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_extern] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2046), + [anon_sym_COLON_COLON] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_DOT_DOT] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2046), + [anon_sym_PIPE] = ACTIONS(2046), + [anon_sym_yield] = ACTIONS(2048), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2048), + [sym_super] = ACTIONS(2048), + [sym_crate] = ACTIONS(2048), + [sym_metavariable] = ACTIONS(2046), + [sym_raw_string_literal] = ACTIONS(2046), + [sym_float_literal] = ACTIONS(2046), + [sym_block_comment] = ACTIONS(3), + }, + [502] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), [sym__literal] = STATE(502), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(502), - [sym_identifier] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2073), - [anon_sym_i8] = ACTIONS(2073), - [anon_sym_u16] = ACTIONS(2073), - [anon_sym_i16] = ACTIONS(2073), - [anon_sym_u32] = ACTIONS(2073), - [anon_sym_i32] = ACTIONS(2073), - [anon_sym_u64] = ACTIONS(2073), - [anon_sym_i64] = ACTIONS(2073), - [anon_sym_u128] = ACTIONS(2073), - [anon_sym_i128] = ACTIONS(2073), - [anon_sym_isize] = ACTIONS(2073), - [anon_sym_usize] = ACTIONS(2073), - [anon_sym_f32] = ACTIONS(2073), - [anon_sym_f64] = ACTIONS(2073), - [anon_sym_bool] = ACTIONS(2073), - [anon_sym_str] = ACTIONS(2073), - [anon_sym_char] = ACTIONS(2073), - [aux_sym__non_special_token_token1] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2073), - [anon_sym_as] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2073), - [anon_sym_await] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_default] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_fn] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_impl] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2073), - [anon_sym_loop] = ACTIONS(2073), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_mod] = ACTIONS(2073), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_struct] = ACTIONS(2073), - [anon_sym_trait] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_union] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_where] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [sym_mutable_specifier] = ACTIONS(2073), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2050), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2058), + [anon_sym_RBRACE] = ACTIONS(2056), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_RBRACK] = ACTIONS(2056), + [anon_sym_DOLLAR] = ACTIONS(2064), + [anon_sym_u8] = ACTIONS(2050), + [anon_sym_i8] = ACTIONS(2050), + [anon_sym_u16] = ACTIONS(2050), + [anon_sym_i16] = ACTIONS(2050), + [anon_sym_u32] = ACTIONS(2050), + [anon_sym_i32] = ACTIONS(2050), + [anon_sym_u64] = ACTIONS(2050), + [anon_sym_i64] = ACTIONS(2050), + [anon_sym_u128] = ACTIONS(2050), + [anon_sym_i128] = ACTIONS(2050), + [anon_sym_isize] = ACTIONS(2050), + [anon_sym_usize] = ACTIONS(2050), + [anon_sym_f32] = ACTIONS(2050), + [anon_sym_f64] = ACTIONS(2050), + [anon_sym_bool] = ACTIONS(2050), + [anon_sym_str] = ACTIONS(2050), + [anon_sym_char] = ACTIONS(2050), + [aux_sym__non_special_token_token1] = ACTIONS(2050), + [anon_sym_SQUOTE] = ACTIONS(2050), + [anon_sym_as] = ACTIONS(2050), + [anon_sym_async] = ACTIONS(2050), + [anon_sym_await] = ACTIONS(2050), + [anon_sym_break] = ACTIONS(2050), + [anon_sym_const] = ACTIONS(2050), + [anon_sym_continue] = ACTIONS(2050), + [anon_sym_default] = ACTIONS(2050), + [anon_sym_enum] = ACTIONS(2050), + [anon_sym_fn] = ACTIONS(2050), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_if] = ACTIONS(2050), + [anon_sym_impl] = ACTIONS(2050), + [anon_sym_let] = ACTIONS(2050), + [anon_sym_loop] = ACTIONS(2050), + [anon_sym_match] = ACTIONS(2050), + [anon_sym_mod] = ACTIONS(2050), + [anon_sym_pub] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2050), + [anon_sym_static] = ACTIONS(2050), + [anon_sym_struct] = ACTIONS(2050), + [anon_sym_trait] = ACTIONS(2050), + [anon_sym_type] = ACTIONS(2050), + [anon_sym_union] = ACTIONS(2050), + [anon_sym_unsafe] = ACTIONS(2050), + [anon_sym_use] = ACTIONS(2050), + [anon_sym_where] = ACTIONS(2050), + [anon_sym_while] = ACTIONS(2050), + [sym_mutable_specifier] = ACTIONS(2050), + [sym_integer_literal] = ACTIONS(2067), + [aux_sym_string_literal_token1] = ACTIONS(2070), + [sym_char_literal] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2073), - [sym_super] = ACTIONS(2073), - [sym_crate] = ACTIONS(2073), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2050), + [sym_super] = ACTIONS(2050), + [sym_crate] = ACTIONS(2050), + [sym_raw_string_literal] = ACTIONS(2067), + [sym_float_literal] = ACTIONS(2067), [sym_block_comment] = ACTIONS(3), }, - [499] = { - [sym__token_pattern] = STATE(506), - [sym_token_tree_pattern] = STATE(506), - [sym_token_binding_pattern] = STATE(506), - [sym_token_repetition_pattern] = STATE(506), - [sym__literal] = STATE(506), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2093), - [anon_sym_i8] = ACTIONS(2093), - [anon_sym_u16] = ACTIONS(2093), - [anon_sym_i16] = ACTIONS(2093), - [anon_sym_u32] = ACTIONS(2093), - [anon_sym_i32] = ACTIONS(2093), - [anon_sym_u64] = ACTIONS(2093), - [anon_sym_i64] = ACTIONS(2093), - [anon_sym_u128] = ACTIONS(2093), - [anon_sym_i128] = ACTIONS(2093), - [anon_sym_isize] = ACTIONS(2093), - [anon_sym_usize] = ACTIONS(2093), - [anon_sym_f32] = ACTIONS(2093), - [anon_sym_f64] = ACTIONS(2093), - [anon_sym_bool] = ACTIONS(2093), - [anon_sym_str] = ACTIONS(2093), - [anon_sym_char] = ACTIONS(2093), - [aux_sym__non_special_token_token1] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_impl] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_loop] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_mod] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_trait] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_use] = ACTIONS(2093), - [anon_sym_where] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [sym_mutable_specifier] = ACTIONS(2093), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [503] = { + [sym__token_pattern] = STATE(515), + [sym_token_tree_pattern] = STATE(515), + [sym_token_binding_pattern] = STATE(515), + [sym_token_repetition_pattern] = STATE(515), + [sym__literal] = STATE(515), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_pattern_repeat1] = STATE(515), + [sym_identifier] = ACTIONS(2076), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_RBRACK] = ACTIONS(2084), + [anon_sym_DOLLAR] = ACTIONS(2086), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2076), + [anon_sym_SQUOTE] = ACTIONS(2076), + [anon_sym_as] = ACTIONS(2076), + [anon_sym_async] = ACTIONS(2076), + [anon_sym_await] = 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_where] = ACTIONS(2076), + [anon_sym_while] = ACTIONS(2076), + [sym_mutable_specifier] = ACTIONS(2076), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_crate] = ACTIONS(2093), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2076), + [sym_super] = ACTIONS(2076), + [sym_crate] = ACTIONS(2076), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, - [500] = { - [sym__token_pattern] = STATE(507), - [sym_token_tree_pattern] = STATE(507), - [sym_token_binding_pattern] = STATE(507), - [sym_token_repetition_pattern] = STATE(507), - [sym__literal] = STATE(507), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_RBRACK] = ACTIONS(2077), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2095), - [anon_sym_i8] = ACTIONS(2095), - [anon_sym_u16] = ACTIONS(2095), - [anon_sym_i16] = ACTIONS(2095), - [anon_sym_u32] = ACTIONS(2095), - [anon_sym_i32] = ACTIONS(2095), - [anon_sym_u64] = ACTIONS(2095), - [anon_sym_i64] = ACTIONS(2095), - [anon_sym_u128] = ACTIONS(2095), - [anon_sym_i128] = ACTIONS(2095), - [anon_sym_isize] = ACTIONS(2095), - [anon_sym_usize] = ACTIONS(2095), - [anon_sym_f32] = ACTIONS(2095), - [anon_sym_f64] = ACTIONS(2095), - [anon_sym_bool] = ACTIONS(2095), - [anon_sym_str] = ACTIONS(2095), - [anon_sym_char] = ACTIONS(2095), - [aux_sym__non_special_token_token1] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), - [anon_sym_as] = ACTIONS(2095), - [anon_sym_async] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_default] = ACTIONS(2095), - [anon_sym_enum] = ACTIONS(2095), - [anon_sym_fn] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_impl] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_loop] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_mod] = ACTIONS(2095), - [anon_sym_pub] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_static] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2095), - [anon_sym_trait] = ACTIONS(2095), - [anon_sym_type] = ACTIONS(2095), - [anon_sym_union] = ACTIONS(2095), - [anon_sym_unsafe] = ACTIONS(2095), - [anon_sym_use] = ACTIONS(2095), - [anon_sym_where] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [sym_mutable_specifier] = ACTIONS(2095), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [504] = { + [sym__token_pattern] = STATE(517), + [sym_token_tree_pattern] = STATE(517), + [sym_token_binding_pattern] = STATE(517), + [sym_token_repetition_pattern] = STATE(517), + [sym__literal] = STATE(517), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_pattern_repeat1] = STATE(517), + [sym_identifier] = ACTIONS(2096), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2086), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2096), + [anon_sym_as] = ACTIONS(2096), + [anon_sym_async] = ACTIONS(2096), + [anon_sym_await] = 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_where] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [sym_mutable_specifier] = ACTIONS(2096), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2095), - [sym_super] = ACTIONS(2095), - [sym_crate] = ACTIONS(2095), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_crate] = ACTIONS(2096), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, - [501] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_arm] = STATE(513), - [sym_last_match_arm] = STATE(2462), - [sym_match_pattern] = STATE(2369), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [505] = { + [sym__token_pattern] = STATE(264), + [sym_token_tree_pattern] = STATE(264), + [sym_token_binding_pattern] = STATE(264), + [sym_token_repetition_pattern] = STATE(264), + [sym__literal] = STATE(264), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_RPAREN] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_u8] = ACTIONS(2098), + [anon_sym_i8] = ACTIONS(2098), + [anon_sym_u16] = ACTIONS(2098), + [anon_sym_i16] = ACTIONS(2098), + [anon_sym_u32] = ACTIONS(2098), + [anon_sym_i32] = ACTIONS(2098), + [anon_sym_u64] = ACTIONS(2098), + [anon_sym_i64] = ACTIONS(2098), + [anon_sym_u128] = ACTIONS(2098), + [anon_sym_i128] = ACTIONS(2098), + [anon_sym_isize] = ACTIONS(2098), + [anon_sym_usize] = ACTIONS(2098), + [anon_sym_f32] = ACTIONS(2098), + [anon_sym_f64] = ACTIONS(2098), + [anon_sym_bool] = ACTIONS(2098), + [anon_sym_str] = ACTIONS(2098), + [anon_sym_char] = ACTIONS(2098), + [aux_sym__non_special_token_token1] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_as] = ACTIONS(2098), + [anon_sym_async] = ACTIONS(2098), + [anon_sym_await] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_fn] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_impl] = ACTIONS(2098), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_loop] = ACTIONS(2098), + [anon_sym_match] = ACTIONS(2098), + [anon_sym_mod] = ACTIONS(2098), + [anon_sym_pub] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_trait] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [anon_sym_unsafe] = ACTIONS(2098), + [anon_sym_use] = ACTIONS(2098), + [anon_sym_where] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [sym_mutable_specifier] = ACTIONS(2098), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2098), + [sym_super] = ACTIONS(2098), + [sym_crate] = ACTIONS(2098), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), + [sym_block_comment] = ACTIONS(3), + }, + [506] = { + [sym_attribute_item] = STATE(567), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_match_arm] = STATE(521), + [sym_last_match_arm] = STATE(2605), + [sym_match_pattern] = STATE(2416), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2021), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_match_block_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -62256,1086 +65374,1167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [502] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_RPAREN] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), - [sym_block_comment] = ACTIONS(3), - }, - [503] = { - [sym__token_pattern] = STATE(509), - [sym_token_tree_pattern] = STATE(509), - [sym_token_binding_pattern] = STATE(509), - [sym_token_repetition_pattern] = STATE(509), - [sym__literal] = STATE(509), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_RPAREN] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2101), - [anon_sym_i8] = ACTIONS(2101), - [anon_sym_u16] = ACTIONS(2101), - [anon_sym_i16] = ACTIONS(2101), - [anon_sym_u32] = ACTIONS(2101), - [anon_sym_i32] = ACTIONS(2101), - [anon_sym_u64] = ACTIONS(2101), - [anon_sym_i64] = ACTIONS(2101), - [anon_sym_u128] = ACTIONS(2101), - [anon_sym_i128] = ACTIONS(2101), - [anon_sym_isize] = ACTIONS(2101), - [anon_sym_usize] = ACTIONS(2101), - [anon_sym_f32] = ACTIONS(2101), - [anon_sym_f64] = ACTIONS(2101), - [anon_sym_bool] = ACTIONS(2101), - [anon_sym_str] = ACTIONS(2101), - [anon_sym_char] = ACTIONS(2101), - [aux_sym__non_special_token_token1] = ACTIONS(2101), - [anon_sym_SQUOTE] = ACTIONS(2101), - [anon_sym_as] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_await] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_default] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [anon_sym_fn] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_impl] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_loop] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_mod] = ACTIONS(2101), - [anon_sym_pub] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_struct] = ACTIONS(2101), - [anon_sym_trait] = ACTIONS(2101), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_union] = ACTIONS(2101), - [anon_sym_unsafe] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_where] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [sym_mutable_specifier] = ACTIONS(2101), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2101), - [sym_super] = ACTIONS(2101), - [sym_crate] = ACTIONS(2101), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [507] = { + [sym_attribute_item] = STATE(567), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_match_arm] = STATE(521), + [sym_last_match_arm] = STATE(2457), + [sym_match_pattern] = STATE(2416), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2021), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_match_block_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [504] = { - [sym__token_pattern] = STATE(510), - [sym_token_tree_pattern] = STATE(510), - [sym_token_binding_pattern] = STATE(510), - [sym_token_repetition_pattern] = STATE(510), - [sym__literal] = STATE(510), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_await] = 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_where] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [sym_mutable_specifier] = ACTIONS(2105), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_crate] = ACTIONS(2105), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [508] = { + [sym_attribute_item] = STATE(567), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_match_arm] = STATE(521), + [sym_last_match_arm] = STATE(2583), + [sym_match_pattern] = STATE(2416), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2021), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_match_block_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [505] = { - [sym__token_pattern] = STATE(511), - [sym_token_tree_pattern] = STATE(511), - [sym_token_binding_pattern] = STATE(511), - [sym_token_repetition_pattern] = STATE(511), - [sym__literal] = STATE(511), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(511), - [sym_identifier] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_RBRACK] = ACTIONS(2103), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2107), - [anon_sym_i8] = ACTIONS(2107), - [anon_sym_u16] = ACTIONS(2107), - [anon_sym_i16] = ACTIONS(2107), - [anon_sym_u32] = ACTIONS(2107), - [anon_sym_i32] = ACTIONS(2107), - [anon_sym_u64] = ACTIONS(2107), - [anon_sym_i64] = ACTIONS(2107), - [anon_sym_u128] = ACTIONS(2107), - [anon_sym_i128] = ACTIONS(2107), - [anon_sym_isize] = ACTIONS(2107), - [anon_sym_usize] = ACTIONS(2107), - [anon_sym_f32] = ACTIONS(2107), - [anon_sym_f64] = ACTIONS(2107), - [anon_sym_bool] = ACTIONS(2107), - [anon_sym_str] = ACTIONS(2107), - [anon_sym_char] = ACTIONS(2107), - [aux_sym__non_special_token_token1] = ACTIONS(2107), - [anon_sym_SQUOTE] = ACTIONS(2107), - [anon_sym_as] = ACTIONS(2107), - [anon_sym_async] = ACTIONS(2107), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_const] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2107), - [anon_sym_default] = ACTIONS(2107), - [anon_sym_enum] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(2107), - [anon_sym_for] = ACTIONS(2107), - [anon_sym_if] = ACTIONS(2107), - [anon_sym_impl] = ACTIONS(2107), - [anon_sym_let] = ACTIONS(2107), - [anon_sym_loop] = ACTIONS(2107), - [anon_sym_match] = ACTIONS(2107), - [anon_sym_mod] = ACTIONS(2107), - [anon_sym_pub] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(2107), - [anon_sym_static] = ACTIONS(2107), - [anon_sym_struct] = ACTIONS(2107), - [anon_sym_trait] = ACTIONS(2107), - [anon_sym_type] = ACTIONS(2107), - [anon_sym_union] = ACTIONS(2107), - [anon_sym_unsafe] = ACTIONS(2107), - [anon_sym_use] = ACTIONS(2107), - [anon_sym_where] = ACTIONS(2107), - [anon_sym_while] = ACTIONS(2107), - [sym_mutable_specifier] = ACTIONS(2107), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [509] = { + [sym__token_pattern] = STATE(520), + [sym_token_tree_pattern] = STATE(520), + [sym_token_binding_pattern] = STATE(520), + [sym_token_repetition_pattern] = STATE(520), + [sym__literal] = STATE(520), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_pattern_repeat1] = STATE(520), + [sym_identifier] = ACTIONS(2102), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_RPAREN] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_u8] = ACTIONS(2102), + [anon_sym_i8] = ACTIONS(2102), + [anon_sym_u16] = ACTIONS(2102), + [anon_sym_i16] = ACTIONS(2102), + [anon_sym_u32] = ACTIONS(2102), + [anon_sym_i32] = ACTIONS(2102), + [anon_sym_u64] = ACTIONS(2102), + [anon_sym_i64] = ACTIONS(2102), + [anon_sym_u128] = ACTIONS(2102), + [anon_sym_i128] = ACTIONS(2102), + [anon_sym_isize] = ACTIONS(2102), + [anon_sym_usize] = ACTIONS(2102), + [anon_sym_f32] = ACTIONS(2102), + [anon_sym_f64] = ACTIONS(2102), + [anon_sym_bool] = ACTIONS(2102), + [anon_sym_str] = ACTIONS(2102), + [anon_sym_char] = ACTIONS(2102), + [aux_sym__non_special_token_token1] = ACTIONS(2102), + [anon_sym_SQUOTE] = ACTIONS(2102), + [anon_sym_as] = ACTIONS(2102), + [anon_sym_async] = ACTIONS(2102), + [anon_sym_await] = ACTIONS(2102), + [anon_sym_break] = ACTIONS(2102), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_continue] = ACTIONS(2102), + [anon_sym_default] = ACTIONS(2102), + [anon_sym_enum] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(2102), + [anon_sym_for] = ACTIONS(2102), + [anon_sym_if] = ACTIONS(2102), + [anon_sym_impl] = ACTIONS(2102), + [anon_sym_let] = ACTIONS(2102), + [anon_sym_loop] = ACTIONS(2102), + [anon_sym_match] = ACTIONS(2102), + [anon_sym_mod] = ACTIONS(2102), + [anon_sym_pub] = ACTIONS(2102), + [anon_sym_return] = ACTIONS(2102), + [anon_sym_static] = ACTIONS(2102), + [anon_sym_struct] = ACTIONS(2102), + [anon_sym_trait] = ACTIONS(2102), + [anon_sym_type] = ACTIONS(2102), + [anon_sym_union] = ACTIONS(2102), + [anon_sym_unsafe] = ACTIONS(2102), + [anon_sym_use] = ACTIONS(2102), + [anon_sym_where] = ACTIONS(2102), + [anon_sym_while] = ACTIONS(2102), + [sym_mutable_specifier] = ACTIONS(2102), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2107), - [sym_super] = ACTIONS(2107), - [sym_crate] = ACTIONS(2107), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2102), + [sym_super] = ACTIONS(2102), + [sym_crate] = ACTIONS(2102), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, - [506] = { + [510] = { [sym__token_pattern] = STATE(264), [sym_token_tree_pattern] = STATE(264), [sym_token_binding_pattern] = STATE(264), [sym_token_repetition_pattern] = STATE(264), [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [sym_identifier] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_RBRACK] = ACTIONS(2104), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_u8] = ACTIONS(2098), + [anon_sym_i8] = ACTIONS(2098), + [anon_sym_u16] = ACTIONS(2098), + [anon_sym_i16] = ACTIONS(2098), + [anon_sym_u32] = ACTIONS(2098), + [anon_sym_i32] = ACTIONS(2098), + [anon_sym_u64] = ACTIONS(2098), + [anon_sym_i64] = ACTIONS(2098), + [anon_sym_u128] = ACTIONS(2098), + [anon_sym_i128] = ACTIONS(2098), + [anon_sym_isize] = ACTIONS(2098), + [anon_sym_usize] = ACTIONS(2098), + [anon_sym_f32] = ACTIONS(2098), + [anon_sym_f64] = ACTIONS(2098), + [anon_sym_bool] = ACTIONS(2098), + [anon_sym_str] = ACTIONS(2098), + [anon_sym_char] = ACTIONS(2098), + [aux_sym__non_special_token_token1] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_as] = ACTIONS(2098), + [anon_sym_async] = ACTIONS(2098), + [anon_sym_await] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_fn] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_impl] = ACTIONS(2098), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_loop] = ACTIONS(2098), + [anon_sym_match] = ACTIONS(2098), + [anon_sym_mod] = ACTIONS(2098), + [anon_sym_pub] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_trait] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [anon_sym_unsafe] = ACTIONS(2098), + [anon_sym_use] = ACTIONS(2098), + [anon_sym_where] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [sym_mutable_specifier] = ACTIONS(2098), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2098), + [sym_super] = ACTIONS(2098), + [sym_crate] = ACTIONS(2098), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, - [507] = { + [511] = { [sym__token_pattern] = STATE(264), [sym_token_tree_pattern] = STATE(264), [sym_token_binding_pattern] = STATE(264), [sym_token_repetition_pattern] = STATE(264), [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_RBRACK] = ACTIONS(2099), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [sym_identifier] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_u8] = ACTIONS(2098), + [anon_sym_i8] = ACTIONS(2098), + [anon_sym_u16] = ACTIONS(2098), + [anon_sym_i16] = ACTIONS(2098), + [anon_sym_u32] = ACTIONS(2098), + [anon_sym_i32] = ACTIONS(2098), + [anon_sym_u64] = ACTIONS(2098), + [anon_sym_i64] = ACTIONS(2098), + [anon_sym_u128] = ACTIONS(2098), + [anon_sym_i128] = ACTIONS(2098), + [anon_sym_isize] = ACTIONS(2098), + [anon_sym_usize] = ACTIONS(2098), + [anon_sym_f32] = ACTIONS(2098), + [anon_sym_f64] = ACTIONS(2098), + [anon_sym_bool] = ACTIONS(2098), + [anon_sym_str] = ACTIONS(2098), + [anon_sym_char] = ACTIONS(2098), + [aux_sym__non_special_token_token1] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_as] = ACTIONS(2098), + [anon_sym_async] = ACTIONS(2098), + [anon_sym_await] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_fn] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_impl] = ACTIONS(2098), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_loop] = ACTIONS(2098), + [anon_sym_match] = ACTIONS(2098), + [anon_sym_mod] = ACTIONS(2098), + [anon_sym_pub] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_trait] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [anon_sym_unsafe] = ACTIONS(2098), + [anon_sym_use] = ACTIONS(2098), + [anon_sym_where] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [sym_mutable_specifier] = ACTIONS(2098), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2098), + [sym_super] = ACTIONS(2098), + [sym_crate] = ACTIONS(2098), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, - [508] = { - [sym__token_pattern] = STATE(512), - [sym_token_tree_pattern] = STATE(512), - [sym_token_binding_pattern] = STATE(512), - [sym_token_repetition_pattern] = STATE(512), - [sym__literal] = STATE(512), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(512), - [sym_identifier] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_RPAREN] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2109), - [anon_sym_i8] = ACTIONS(2109), - [anon_sym_u16] = ACTIONS(2109), - [anon_sym_i16] = ACTIONS(2109), - [anon_sym_u32] = ACTIONS(2109), - [anon_sym_i32] = ACTIONS(2109), - [anon_sym_u64] = ACTIONS(2109), - [anon_sym_i64] = ACTIONS(2109), - [anon_sym_u128] = ACTIONS(2109), - [anon_sym_i128] = ACTIONS(2109), - [anon_sym_isize] = ACTIONS(2109), - [anon_sym_usize] = ACTIONS(2109), - [anon_sym_f32] = ACTIONS(2109), - [anon_sym_f64] = ACTIONS(2109), - [anon_sym_bool] = ACTIONS(2109), - [anon_sym_str] = ACTIONS(2109), - [anon_sym_char] = ACTIONS(2109), - [aux_sym__non_special_token_token1] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [anon_sym_fn] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_impl] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_loop] = ACTIONS(2109), - [anon_sym_match] = ACTIONS(2109), - [anon_sym_mod] = ACTIONS(2109), - [anon_sym_pub] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_struct] = ACTIONS(2109), - [anon_sym_trait] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_union] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(2109), - [anon_sym_use] = ACTIONS(2109), - [anon_sym_where] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [sym_mutable_specifier] = ACTIONS(2109), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [512] = { + [sym__token_pattern] = STATE(505), + [sym_token_tree_pattern] = STATE(505), + [sym_token_binding_pattern] = STATE(505), + [sym_token_repetition_pattern] = STATE(505), + [sym__literal] = STATE(505), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_pattern_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_RPAREN] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_u8] = ACTIONS(2106), + [anon_sym_i8] = ACTIONS(2106), + [anon_sym_u16] = ACTIONS(2106), + [anon_sym_i16] = ACTIONS(2106), + [anon_sym_u32] = ACTIONS(2106), + [anon_sym_i32] = ACTIONS(2106), + [anon_sym_u64] = ACTIONS(2106), + [anon_sym_i64] = ACTIONS(2106), + [anon_sym_u128] = ACTIONS(2106), + [anon_sym_i128] = ACTIONS(2106), + [anon_sym_isize] = ACTIONS(2106), + [anon_sym_usize] = ACTIONS(2106), + [anon_sym_f32] = ACTIONS(2106), + [anon_sym_f64] = ACTIONS(2106), + [anon_sym_bool] = ACTIONS(2106), + [anon_sym_str] = ACTIONS(2106), + [anon_sym_char] = ACTIONS(2106), + [aux_sym__non_special_token_token1] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_as] = ACTIONS(2106), + [anon_sym_async] = ACTIONS(2106), + [anon_sym_await] = ACTIONS(2106), + [anon_sym_break] = ACTIONS(2106), + [anon_sym_const] = ACTIONS(2106), + [anon_sym_continue] = ACTIONS(2106), + [anon_sym_default] = ACTIONS(2106), + [anon_sym_enum] = ACTIONS(2106), + [anon_sym_fn] = ACTIONS(2106), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_if] = ACTIONS(2106), + [anon_sym_impl] = ACTIONS(2106), + [anon_sym_let] = ACTIONS(2106), + [anon_sym_loop] = ACTIONS(2106), + [anon_sym_match] = ACTIONS(2106), + [anon_sym_mod] = ACTIONS(2106), + [anon_sym_pub] = ACTIONS(2106), + [anon_sym_return] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(2106), + [anon_sym_trait] = ACTIONS(2106), + [anon_sym_type] = ACTIONS(2106), + [anon_sym_union] = ACTIONS(2106), + [anon_sym_unsafe] = ACTIONS(2106), + [anon_sym_use] = ACTIONS(2106), + [anon_sym_where] = ACTIONS(2106), + [anon_sym_while] = ACTIONS(2106), + [sym_mutable_specifier] = ACTIONS(2106), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_crate] = ACTIONS(2109), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2106), + [sym_super] = ACTIONS(2106), + [sym_crate] = ACTIONS(2106), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, - [509] = { + [513] = { [sym__token_pattern] = STATE(264), [sym_token_tree_pattern] = STATE(264), [sym_token_binding_pattern] = STATE(264), [sym_token_repetition_pattern] = STATE(264), [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_RPAREN] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [sym_identifier] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_RPAREN] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_u8] = ACTIONS(2098), + [anon_sym_i8] = ACTIONS(2098), + [anon_sym_u16] = ACTIONS(2098), + [anon_sym_i16] = ACTIONS(2098), + [anon_sym_u32] = ACTIONS(2098), + [anon_sym_i32] = ACTIONS(2098), + [anon_sym_u64] = ACTIONS(2098), + [anon_sym_i64] = ACTIONS(2098), + [anon_sym_u128] = ACTIONS(2098), + [anon_sym_i128] = ACTIONS(2098), + [anon_sym_isize] = ACTIONS(2098), + [anon_sym_usize] = ACTIONS(2098), + [anon_sym_f32] = ACTIONS(2098), + [anon_sym_f64] = ACTIONS(2098), + [anon_sym_bool] = ACTIONS(2098), + [anon_sym_str] = ACTIONS(2098), + [anon_sym_char] = ACTIONS(2098), + [aux_sym__non_special_token_token1] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_as] = ACTIONS(2098), + [anon_sym_async] = ACTIONS(2098), + [anon_sym_await] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_fn] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_impl] = ACTIONS(2098), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_loop] = ACTIONS(2098), + [anon_sym_match] = ACTIONS(2098), + [anon_sym_mod] = ACTIONS(2098), + [anon_sym_pub] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_trait] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [anon_sym_unsafe] = ACTIONS(2098), + [anon_sym_use] = ACTIONS(2098), + [anon_sym_where] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [sym_mutable_specifier] = ACTIONS(2098), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2098), + [sym_super] = ACTIONS(2098), + [sym_crate] = ACTIONS(2098), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, - [510] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [514] = { + [sym__token_pattern] = STATE(510), + [sym_token_tree_pattern] = STATE(510), + [sym_token_binding_pattern] = STATE(510), + [sym_token_repetition_pattern] = STATE(510), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_pattern_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_RBRACK] = ACTIONS(2112), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_u8] = ACTIONS(2110), + [anon_sym_i8] = ACTIONS(2110), + [anon_sym_u16] = ACTIONS(2110), + [anon_sym_i16] = ACTIONS(2110), + [anon_sym_u32] = ACTIONS(2110), + [anon_sym_i32] = ACTIONS(2110), + [anon_sym_u64] = ACTIONS(2110), + [anon_sym_i64] = ACTIONS(2110), + [anon_sym_u128] = ACTIONS(2110), + [anon_sym_i128] = ACTIONS(2110), + [anon_sym_isize] = ACTIONS(2110), + [anon_sym_usize] = ACTIONS(2110), + [anon_sym_f32] = ACTIONS(2110), + [anon_sym_f64] = ACTIONS(2110), + [anon_sym_bool] = ACTIONS(2110), + [anon_sym_str] = ACTIONS(2110), + [anon_sym_char] = ACTIONS(2110), + [aux_sym__non_special_token_token1] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_as] = ACTIONS(2110), + [anon_sym_async] = ACTIONS(2110), + [anon_sym_await] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_default] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [anon_sym_fn] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_impl] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_loop] = ACTIONS(2110), + [anon_sym_match] = ACTIONS(2110), + [anon_sym_mod] = ACTIONS(2110), + [anon_sym_pub] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_struct] = ACTIONS(2110), + [anon_sym_trait] = ACTIONS(2110), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_union] = ACTIONS(2110), + [anon_sym_unsafe] = ACTIONS(2110), + [anon_sym_use] = ACTIONS(2110), + [anon_sym_where] = ACTIONS(2110), + [anon_sym_while] = ACTIONS(2110), + [sym_mutable_specifier] = ACTIONS(2110), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2110), + [sym_super] = ACTIONS(2110), + [sym_crate] = ACTIONS(2110), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, - [511] = { + [515] = { [sym__token_pattern] = STATE(264), [sym_token_tree_pattern] = STATE(264), [sym_token_binding_pattern] = STATE(264), [sym_token_repetition_pattern] = STATE(264), [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_RBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [sym_identifier] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_RBRACK] = ACTIONS(2114), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_u8] = ACTIONS(2098), + [anon_sym_i8] = ACTIONS(2098), + [anon_sym_u16] = ACTIONS(2098), + [anon_sym_i16] = ACTIONS(2098), + [anon_sym_u32] = ACTIONS(2098), + [anon_sym_i32] = ACTIONS(2098), + [anon_sym_u64] = ACTIONS(2098), + [anon_sym_i64] = ACTIONS(2098), + [anon_sym_u128] = ACTIONS(2098), + [anon_sym_i128] = ACTIONS(2098), + [anon_sym_isize] = ACTIONS(2098), + [anon_sym_usize] = ACTIONS(2098), + [anon_sym_f32] = ACTIONS(2098), + [anon_sym_f64] = ACTIONS(2098), + [anon_sym_bool] = ACTIONS(2098), + [anon_sym_str] = ACTIONS(2098), + [anon_sym_char] = ACTIONS(2098), + [aux_sym__non_special_token_token1] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_as] = ACTIONS(2098), + [anon_sym_async] = ACTIONS(2098), + [anon_sym_await] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_fn] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_impl] = ACTIONS(2098), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_loop] = ACTIONS(2098), + [anon_sym_match] = ACTIONS(2098), + [anon_sym_mod] = ACTIONS(2098), + [anon_sym_pub] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_trait] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [anon_sym_unsafe] = ACTIONS(2098), + [anon_sym_use] = ACTIONS(2098), + [anon_sym_where] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [sym_mutable_specifier] = ACTIONS(2098), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2098), + [sym_super] = ACTIONS(2098), + [sym_crate] = ACTIONS(2098), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, - [512] = { + [516] = { + [sym_token_tree] = STATE(516), + [sym_token_repetition] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_RPAREN] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_RBRACK] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2130), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2116), + [anon_sym_SQUOTE] = ACTIONS(2116), + [anon_sym_as] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_await] = 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_where] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [sym_mutable_specifier] = ACTIONS(2116), + [sym_integer_literal] = ACTIONS(2133), + [aux_sym_string_literal_token1] = ACTIONS(2136), + [sym_char_literal] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2139), + [anon_sym_false] = ACTIONS(2139), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_crate] = ACTIONS(2116), + [sym_metavariable] = ACTIONS(2142), + [sym_raw_string_literal] = ACTIONS(2133), + [sym_float_literal] = ACTIONS(2133), + [sym_block_comment] = ACTIONS(3), + }, + [517] = { [sym__token_pattern] = STATE(264), [sym_token_tree_pattern] = STATE(264), [sym_token_binding_pattern] = STATE(264), [sym_token_repetition_pattern] = STATE(264), [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_RPAREN] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [sym_identifier] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_u8] = ACTIONS(2098), + [anon_sym_i8] = ACTIONS(2098), + [anon_sym_u16] = ACTIONS(2098), + [anon_sym_i16] = ACTIONS(2098), + [anon_sym_u32] = ACTIONS(2098), + [anon_sym_i32] = ACTIONS(2098), + [anon_sym_u64] = ACTIONS(2098), + [anon_sym_i64] = ACTIONS(2098), + [anon_sym_u128] = ACTIONS(2098), + [anon_sym_i128] = ACTIONS(2098), + [anon_sym_isize] = ACTIONS(2098), + [anon_sym_usize] = ACTIONS(2098), + [anon_sym_f32] = ACTIONS(2098), + [anon_sym_f64] = ACTIONS(2098), + [anon_sym_bool] = ACTIONS(2098), + [anon_sym_str] = ACTIONS(2098), + [anon_sym_char] = ACTIONS(2098), + [aux_sym__non_special_token_token1] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_as] = ACTIONS(2098), + [anon_sym_async] = ACTIONS(2098), + [anon_sym_await] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_fn] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_impl] = ACTIONS(2098), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_loop] = ACTIONS(2098), + [anon_sym_match] = ACTIONS(2098), + [anon_sym_mod] = ACTIONS(2098), + [anon_sym_pub] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_trait] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [anon_sym_unsafe] = ACTIONS(2098), + [anon_sym_use] = ACTIONS(2098), + [anon_sym_where] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [sym_mutable_specifier] = ACTIONS(2098), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2098), + [sym_super] = ACTIONS(2098), + [sym_crate] = ACTIONS(2098), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, - [513] = { - [sym_attribute_item] = STATE(560), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_arm] = STATE(513), - [sym_match_pattern] = STATE(2535), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(560), - [aux_sym_match_block_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2123), - [anon_sym_u8] = ACTIONS(2126), - [anon_sym_i8] = ACTIONS(2126), - [anon_sym_u16] = ACTIONS(2126), - [anon_sym_i16] = ACTIONS(2126), - [anon_sym_u32] = ACTIONS(2126), - [anon_sym_i32] = ACTIONS(2126), - [anon_sym_u64] = ACTIONS(2126), - [anon_sym_i64] = ACTIONS(2126), - [anon_sym_u128] = ACTIONS(2126), - [anon_sym_i128] = ACTIONS(2126), - [anon_sym_isize] = ACTIONS(2126), - [anon_sym_usize] = ACTIONS(2126), - [anon_sym_f32] = ACTIONS(2126), - [anon_sym_f64] = ACTIONS(2126), - [anon_sym_bool] = ACTIONS(2126), - [anon_sym_str] = ACTIONS(2126), - [anon_sym_char] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_default] = ACTIONS(2132), - [anon_sym_union] = ACTIONS(2132), - [anon_sym_POUND] = ACTIONS(2135), - [anon_sym_ref] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_COLON_COLON] = ACTIONS(2144), - [anon_sym__] = ACTIONS(2147), - [anon_sym_AMP] = ACTIONS(2150), - [sym_mutable_specifier] = ACTIONS(2153), - [anon_sym_DOT_DOT] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2159), - [sym_integer_literal] = ACTIONS(2162), - [aux_sym_string_literal_token1] = ACTIONS(2165), - [sym_char_literal] = ACTIONS(2162), - [anon_sym_true] = ACTIONS(2168), - [anon_sym_false] = ACTIONS(2168), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2171), - [sym_super] = ACTIONS(2171), - [sym_crate] = ACTIONS(2171), - [sym_metavariable] = ACTIONS(2174), - [sym_raw_string_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), + [518] = { + [sym__token_pattern] = STATE(513), + [sym_token_tree_pattern] = STATE(513), + [sym_token_binding_pattern] = STATE(513), + [sym_token_repetition_pattern] = STATE(513), + [sym__literal] = STATE(513), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_pattern_repeat1] = STATE(513), + [sym_identifier] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_RPAREN] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2086), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_as] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_await] = 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_where] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [sym_mutable_specifier] = ACTIONS(2145), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2145), + [sym_super] = ACTIONS(2145), + [sym_crate] = ACTIONS(2145), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, - [514] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), + [519] = { + [sym__token_pattern] = STATE(511), + [sym_token_tree_pattern] = STATE(511), + [sym_token_binding_pattern] = STATE(511), + [sym_token_repetition_pattern] = STATE(511), + [sym__literal] = STATE(511), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_pattern_repeat1] = STATE(511), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, - [515] = { - [sym_token_tree] = STATE(521), - [sym_token_repetition] = STATE(521), - [sym__literal] = STATE(521), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_RBRACK] = ACTIONS(2203), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [520] = { + [sym__token_pattern] = STATE(264), + [sym_token_tree_pattern] = STATE(264), + [sym_token_binding_pattern] = STATE(264), + [sym_token_repetition_pattern] = STATE(264), + [sym__literal] = STATE(264), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_RPAREN] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_u8] = ACTIONS(2098), + [anon_sym_i8] = ACTIONS(2098), + [anon_sym_u16] = ACTIONS(2098), + [anon_sym_i16] = ACTIONS(2098), + [anon_sym_u32] = ACTIONS(2098), + [anon_sym_i32] = ACTIONS(2098), + [anon_sym_u64] = ACTIONS(2098), + [anon_sym_i64] = ACTIONS(2098), + [anon_sym_u128] = ACTIONS(2098), + [anon_sym_i128] = ACTIONS(2098), + [anon_sym_isize] = ACTIONS(2098), + [anon_sym_usize] = ACTIONS(2098), + [anon_sym_f32] = ACTIONS(2098), + [anon_sym_f64] = ACTIONS(2098), + [anon_sym_bool] = ACTIONS(2098), + [anon_sym_str] = ACTIONS(2098), + [anon_sym_char] = ACTIONS(2098), + [aux_sym__non_special_token_token1] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_as] = ACTIONS(2098), + [anon_sym_async] = ACTIONS(2098), + [anon_sym_await] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_fn] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_impl] = ACTIONS(2098), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_loop] = ACTIONS(2098), + [anon_sym_match] = ACTIONS(2098), + [anon_sym_mod] = ACTIONS(2098), + [anon_sym_pub] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_trait] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [anon_sym_unsafe] = ACTIONS(2098), + [anon_sym_use] = ACTIONS(2098), + [anon_sym_where] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [sym_mutable_specifier] = ACTIONS(2098), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_metavariable] = ACTIONS(2207), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2098), + [sym_super] = ACTIONS(2098), + [sym_crate] = ACTIONS(2098), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, - [516] = { - [sym_token_tree] = STATE(550), - [sym_token_repetition] = STATE(550), - [sym__literal] = STATE(550), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(550), + [521] = { + [sym_attribute_item] = STATE(566), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_match_arm] = STATE(521), + [sym_match_pattern] = STATE(2449), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2021), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_enum_variant_list_repeat1] = STATE(566), + [aux_sym_match_block_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2164), + [anon_sym_union] = ACTIONS(2164), + [anon_sym_POUND] = ACTIONS(2167), + [anon_sym_ref] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_COLON_COLON] = ACTIONS(2176), + [anon_sym__] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2182), + [sym_mutable_specifier] = ACTIONS(2185), + [anon_sym_DOT_DOT] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2191), + [sym_integer_literal] = ACTIONS(2194), + [aux_sym_string_literal_token1] = ACTIONS(2197), + [sym_char_literal] = ACTIONS(2194), + [anon_sym_true] = ACTIONS(2200), + [anon_sym_false] = ACTIONS(2200), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2203), + [sym_super] = ACTIONS(2203), + [sym_crate] = ACTIONS(2203), + [sym_metavariable] = ACTIONS(2206), + [sym_raw_string_literal] = ACTIONS(2194), + [sym_float_literal] = ACTIONS(2194), + [sym_block_comment] = ACTIONS(3), + }, + [522] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), [sym_identifier] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), [anon_sym_u8] = ACTIONS(2209), [anon_sym_i8] = ACTIONS(2209), [anon_sym_u16] = ACTIONS(2209), @@ -63383,1662 +66582,551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2209), [anon_sym_while] = ACTIONS(2209), [sym_mutable_specifier] = ACTIONS(2209), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), [sym_line_comment] = ACTIONS(1097), [sym_self] = ACTIONS(2209), [sym_super] = ACTIONS(2209), [sym_crate] = ACTIONS(2209), - [sym_metavariable] = ACTIONS(2213), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), - [sym_block_comment] = ACTIONS(3), - }, - [517] = { - [sym_delim_token_tree] = STATE(514), - [sym__delim_tokens] = STATE(514), - [sym__non_delim_token] = STATE(514), - [sym__literal] = STATE(514), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(514), - [sym_identifier] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2219), - [anon_sym_u8] = ACTIONS(2215), - [anon_sym_i8] = ACTIONS(2215), - [anon_sym_u16] = ACTIONS(2215), - [anon_sym_i16] = ACTIONS(2215), - [anon_sym_u32] = ACTIONS(2215), - [anon_sym_i32] = ACTIONS(2215), - [anon_sym_u64] = ACTIONS(2215), - [anon_sym_i64] = ACTIONS(2215), - [anon_sym_u128] = ACTIONS(2215), - [anon_sym_i128] = ACTIONS(2215), - [anon_sym_isize] = ACTIONS(2215), - [anon_sym_usize] = ACTIONS(2215), - [anon_sym_f32] = ACTIONS(2215), - [anon_sym_f64] = ACTIONS(2215), - [anon_sym_bool] = ACTIONS(2215), - [anon_sym_str] = ACTIONS(2215), - [anon_sym_char] = ACTIONS(2215), - [aux_sym__non_special_token_token1] = ACTIONS(2215), - [anon_sym_SQUOTE] = ACTIONS(2215), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_async] = ACTIONS(2215), - [anon_sym_await] = ACTIONS(2215), - [anon_sym_break] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_default] = ACTIONS(2215), - [anon_sym_enum] = ACTIONS(2215), - [anon_sym_fn] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_impl] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2215), - [anon_sym_loop] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2215), - [anon_sym_mod] = ACTIONS(2215), - [anon_sym_pub] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2215), - [anon_sym_static] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2215), - [anon_sym_trait] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2215), - [anon_sym_union] = ACTIONS(2215), - [anon_sym_unsafe] = ACTIONS(2215), - [anon_sym_use] = ACTIONS(2215), - [anon_sym_where] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [sym_mutable_specifier] = ACTIONS(2215), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2215), - [sym_super] = ACTIONS(2215), - [sym_crate] = ACTIONS(2215), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [518] = { - [sym_delim_token_tree] = STATE(543), - [sym__delim_tokens] = STATE(543), - [sym__non_delim_token] = STATE(543), - [sym__literal] = STATE(543), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(543), - [sym_identifier] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_u8] = ACTIONS(2221), - [anon_sym_i8] = ACTIONS(2221), - [anon_sym_u16] = ACTIONS(2221), - [anon_sym_i16] = ACTIONS(2221), - [anon_sym_u32] = ACTIONS(2221), - [anon_sym_i32] = ACTIONS(2221), - [anon_sym_u64] = ACTIONS(2221), - [anon_sym_i64] = ACTIONS(2221), - [anon_sym_u128] = ACTIONS(2221), - [anon_sym_i128] = ACTIONS(2221), - [anon_sym_isize] = ACTIONS(2221), - [anon_sym_usize] = ACTIONS(2221), - [anon_sym_f32] = ACTIONS(2221), - [anon_sym_f64] = ACTIONS(2221), - [anon_sym_bool] = ACTIONS(2221), - [anon_sym_str] = ACTIONS(2221), - [anon_sym_char] = ACTIONS(2221), - [aux_sym__non_special_token_token1] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [anon_sym_fn] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_impl] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_loop] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_mod] = ACTIONS(2221), - [anon_sym_pub] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_struct] = ACTIONS(2221), - [anon_sym_trait] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_union] = ACTIONS(2221), - [anon_sym_unsafe] = ACTIONS(2221), - [anon_sym_use] = ACTIONS(2221), - [anon_sym_where] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [sym_mutable_specifier] = ACTIONS(2221), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_crate] = ACTIONS(2221), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [519] = { - [sym_delim_token_tree] = STATE(542), - [sym__delim_tokens] = STATE(542), - [sym__non_delim_token] = STATE(542), - [sym__literal] = STATE(542), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(542), - [sym_identifier] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2225), - [anon_sym_i8] = ACTIONS(2225), - [anon_sym_u16] = ACTIONS(2225), - [anon_sym_i16] = ACTIONS(2225), - [anon_sym_u32] = ACTIONS(2225), - [anon_sym_i32] = ACTIONS(2225), - [anon_sym_u64] = ACTIONS(2225), - [anon_sym_i64] = ACTIONS(2225), - [anon_sym_u128] = ACTIONS(2225), - [anon_sym_i128] = ACTIONS(2225), - [anon_sym_isize] = ACTIONS(2225), - [anon_sym_usize] = ACTIONS(2225), - [anon_sym_f32] = ACTIONS(2225), - [anon_sym_f64] = ACTIONS(2225), - [anon_sym_bool] = ACTIONS(2225), - [anon_sym_str] = ACTIONS(2225), - [anon_sym_char] = ACTIONS(2225), - [aux_sym__non_special_token_token1] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_default] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_impl] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_loop] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_mod] = ACTIONS(2225), - [anon_sym_pub] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_trait] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_union] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2225), - [anon_sym_where] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [sym_mutable_specifier] = ACTIONS(2225), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2225), - [sym_super] = ACTIONS(2225), - [sym_crate] = ACTIONS(2225), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [520] = { - [sym_delim_token_tree] = STATE(523), - [sym__delim_tokens] = STATE(523), - [sym__non_delim_token] = STATE(523), - [sym__literal] = STATE(523), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(523), - [sym_identifier] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2231), - [anon_sym_DOLLAR] = ACTIONS(2233), - [anon_sym_u8] = ACTIONS(2229), - [anon_sym_i8] = ACTIONS(2229), - [anon_sym_u16] = ACTIONS(2229), - [anon_sym_i16] = ACTIONS(2229), - [anon_sym_u32] = ACTIONS(2229), - [anon_sym_i32] = ACTIONS(2229), - [anon_sym_u64] = ACTIONS(2229), - [anon_sym_i64] = ACTIONS(2229), - [anon_sym_u128] = ACTIONS(2229), - [anon_sym_i128] = ACTIONS(2229), - [anon_sym_isize] = ACTIONS(2229), - [anon_sym_usize] = ACTIONS(2229), - [anon_sym_f32] = ACTIONS(2229), - [anon_sym_f64] = ACTIONS(2229), - [anon_sym_bool] = ACTIONS(2229), - [anon_sym_str] = ACTIONS(2229), - [anon_sym_char] = ACTIONS(2229), - [aux_sym__non_special_token_token1] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_default] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_impl] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_loop] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_mod] = ACTIONS(2229), - [anon_sym_pub] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_trait] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_where] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [sym_mutable_specifier] = ACTIONS(2229), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_crate] = ACTIONS(2229), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [521] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_RBRACK] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), - [sym_block_comment] = ACTIONS(3), - }, - [522] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_RPAREN] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, [523] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), + [sym_delim_token_tree] = STATE(534), + [sym__delim_tokens] = STATE(534), + [sym__non_delim_token] = STATE(534), + [sym__literal] = STATE(534), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(534), + [sym_identifier] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_u8] = ACTIONS(2227), + [anon_sym_i8] = ACTIONS(2227), + [anon_sym_u16] = ACTIONS(2227), + [anon_sym_i16] = ACTIONS(2227), + [anon_sym_u32] = ACTIONS(2227), + [anon_sym_i32] = ACTIONS(2227), + [anon_sym_u64] = ACTIONS(2227), + [anon_sym_i64] = ACTIONS(2227), + [anon_sym_u128] = ACTIONS(2227), + [anon_sym_i128] = ACTIONS(2227), + [anon_sym_isize] = ACTIONS(2227), + [anon_sym_usize] = ACTIONS(2227), + [anon_sym_f32] = ACTIONS(2227), + [anon_sym_f64] = ACTIONS(2227), + [anon_sym_bool] = ACTIONS(2227), + [anon_sym_str] = ACTIONS(2227), + [anon_sym_char] = ACTIONS(2227), + [aux_sym__non_special_token_token1] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_as] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), + [anon_sym_fn] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_impl] = ACTIONS(2227), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_loop] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(2227), + [anon_sym_mod] = ACTIONS(2227), + [anon_sym_pub] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2227), + [anon_sym_trait] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_unsafe] = ACTIONS(2227), + [anon_sym_use] = ACTIONS(2227), + [anon_sym_where] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [sym_mutable_specifier] = ACTIONS(2227), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_self] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_crate] = ACTIONS(2227), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, [524] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [sym_token_tree] = STATE(528), + [sym_token_repetition] = STATE(528), + [sym__literal] = STATE(528), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_repeat1] = STATE(528), + [sym_identifier] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2233), + [anon_sym_i8] = ACTIONS(2233), + [anon_sym_u16] = ACTIONS(2233), + [anon_sym_i16] = ACTIONS(2233), + [anon_sym_u32] = ACTIONS(2233), + [anon_sym_i32] = ACTIONS(2233), + [anon_sym_u64] = ACTIONS(2233), + [anon_sym_i64] = ACTIONS(2233), + [anon_sym_u128] = ACTIONS(2233), + [anon_sym_i128] = ACTIONS(2233), + [anon_sym_isize] = ACTIONS(2233), + [anon_sym_usize] = ACTIONS(2233), + [anon_sym_f32] = ACTIONS(2233), + [anon_sym_f64] = ACTIONS(2233), + [anon_sym_bool] = ACTIONS(2233), + [anon_sym_str] = ACTIONS(2233), + [anon_sym_char] = ACTIONS(2233), + [aux_sym__non_special_token_token1] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_as] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_default] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [anon_sym_fn] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_impl] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_loop] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_mod] = ACTIONS(2233), + [anon_sym_pub] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_struct] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_union] = ACTIONS(2233), + [anon_sym_unsafe] = ACTIONS(2233), + [anon_sym_use] = ACTIONS(2233), + [anon_sym_where] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [sym_mutable_specifier] = ACTIONS(2233), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_crate] = ACTIONS(2233), + [sym_metavariable] = ACTIONS(2245), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, [525] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [sym_token_tree] = STATE(526), + [sym_token_repetition] = STATE(526), + [sym__literal] = STATE(526), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_repeat1] = STATE(526), + [sym_identifier] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_RBRACK] = ACTIONS(2239), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2247), + [anon_sym_i8] = ACTIONS(2247), + [anon_sym_u16] = ACTIONS(2247), + [anon_sym_i16] = ACTIONS(2247), + [anon_sym_u32] = ACTIONS(2247), + [anon_sym_i32] = ACTIONS(2247), + [anon_sym_u64] = ACTIONS(2247), + [anon_sym_i64] = ACTIONS(2247), + [anon_sym_u128] = ACTIONS(2247), + [anon_sym_i128] = ACTIONS(2247), + [anon_sym_isize] = ACTIONS(2247), + [anon_sym_usize] = ACTIONS(2247), + [anon_sym_f32] = ACTIONS(2247), + [anon_sym_f64] = ACTIONS(2247), + [anon_sym_bool] = ACTIONS(2247), + [anon_sym_str] = ACTIONS(2247), + [anon_sym_char] = ACTIONS(2247), + [aux_sym__non_special_token_token1] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2247), + [anon_sym_as] = ACTIONS(2247), + [anon_sym_async] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2247), + [anon_sym_break] = ACTIONS(2247), + [anon_sym_const] = ACTIONS(2247), + [anon_sym_continue] = ACTIONS(2247), + [anon_sym_default] = ACTIONS(2247), + [anon_sym_enum] = ACTIONS(2247), + [anon_sym_fn] = ACTIONS(2247), + [anon_sym_for] = ACTIONS(2247), + [anon_sym_if] = ACTIONS(2247), + [anon_sym_impl] = ACTIONS(2247), + [anon_sym_let] = ACTIONS(2247), + [anon_sym_loop] = ACTIONS(2247), + [anon_sym_match] = ACTIONS(2247), + [anon_sym_mod] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_static] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2247), + [anon_sym_trait] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(2247), + [anon_sym_unsafe] = ACTIONS(2247), + [anon_sym_use] = ACTIONS(2247), + [anon_sym_where] = ACTIONS(2247), + [anon_sym_while] = ACTIONS(2247), + [sym_mutable_specifier] = ACTIONS(2247), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2247), + [sym_super] = ACTIONS(2247), + [sym_crate] = ACTIONS(2247), + [sym_metavariable] = ACTIONS(2249), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, [526] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), + [sym_token_tree] = STATE(516), + [sym_token_repetition] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_RBRACK] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2251), + [anon_sym_i8] = ACTIONS(2251), + [anon_sym_u16] = ACTIONS(2251), + [anon_sym_i16] = ACTIONS(2251), + [anon_sym_u32] = ACTIONS(2251), + [anon_sym_i32] = ACTIONS(2251), + [anon_sym_u64] = ACTIONS(2251), + [anon_sym_i64] = ACTIONS(2251), + [anon_sym_u128] = ACTIONS(2251), + [anon_sym_i128] = ACTIONS(2251), + [anon_sym_isize] = ACTIONS(2251), + [anon_sym_usize] = ACTIONS(2251), + [anon_sym_f32] = ACTIONS(2251), + [anon_sym_f64] = ACTIONS(2251), + [anon_sym_bool] = ACTIONS(2251), + [anon_sym_str] = ACTIONS(2251), + [anon_sym_char] = ACTIONS(2251), + [aux_sym__non_special_token_token1] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_impl] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_mod] = ACTIONS(2251), + [anon_sym_pub] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2251), + [anon_sym_trait] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_union] = ACTIONS(2251), + [anon_sym_unsafe] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_where] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [sym_mutable_specifier] = ACTIONS(2251), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_crate] = ACTIONS(2251), + [sym_metavariable] = ACTIONS(2255), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, [527] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_RBRACK] = ACTIONS(2241), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [sym_token_tree] = STATE(538), + [sym_token_repetition] = STATE(538), + [sym__literal] = STATE(538), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2257), + [anon_sym_i8] = ACTIONS(2257), + [anon_sym_u16] = ACTIONS(2257), + [anon_sym_i16] = ACTIONS(2257), + [anon_sym_u32] = ACTIONS(2257), + [anon_sym_i32] = ACTIONS(2257), + [anon_sym_u64] = ACTIONS(2257), + [anon_sym_i64] = ACTIONS(2257), + [anon_sym_u128] = ACTIONS(2257), + [anon_sym_i128] = ACTIONS(2257), + [anon_sym_isize] = ACTIONS(2257), + [anon_sym_usize] = ACTIONS(2257), + [anon_sym_f32] = ACTIONS(2257), + [anon_sym_f64] = ACTIONS(2257), + [anon_sym_bool] = ACTIONS(2257), + [anon_sym_str] = ACTIONS(2257), + [anon_sym_char] = ACTIONS(2257), + [aux_sym__non_special_token_token1] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_as] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_default] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_fn] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_impl] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_loop] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_mod] = ACTIONS(2257), + [anon_sym_pub] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_trait] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_unsafe] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_where] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [sym_mutable_specifier] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2257), + [sym_super] = ACTIONS(2257), + [sym_crate] = ACTIONS(2257), + [sym_metavariable] = ACTIONS(2261), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, [528] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), + [sym_token_tree] = STATE(516), + [sym_token_repetition] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2251), + [anon_sym_i8] = ACTIONS(2251), + [anon_sym_u16] = ACTIONS(2251), + [anon_sym_i16] = ACTIONS(2251), + [anon_sym_u32] = ACTIONS(2251), + [anon_sym_i32] = ACTIONS(2251), + [anon_sym_u64] = ACTIONS(2251), + [anon_sym_i64] = ACTIONS(2251), + [anon_sym_u128] = ACTIONS(2251), + [anon_sym_i128] = ACTIONS(2251), + [anon_sym_isize] = ACTIONS(2251), + [anon_sym_usize] = ACTIONS(2251), + [anon_sym_f32] = ACTIONS(2251), + [anon_sym_f64] = ACTIONS(2251), + [anon_sym_bool] = ACTIONS(2251), + [anon_sym_str] = ACTIONS(2251), + [anon_sym_char] = ACTIONS(2251), + [aux_sym__non_special_token_token1] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_impl] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_mod] = ACTIONS(2251), + [anon_sym_pub] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2251), + [anon_sym_trait] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_union] = ACTIONS(2251), + [anon_sym_unsafe] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_where] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [sym_mutable_specifier] = ACTIONS(2251), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_crate] = ACTIONS(2251), + [sym_metavariable] = ACTIONS(2255), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, [529] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RBRACK] = ACTIONS(2263), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = 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_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, [530] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [531] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [532] = { - [sym_token_tree] = STATE(533), - [sym_token_repetition] = STATE(533), - [sym__literal] = STATE(533), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(533), - [sym_identifier] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_RPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2249), - [anon_sym_i8] = ACTIONS(2249), - [anon_sym_u16] = ACTIONS(2249), - [anon_sym_i16] = ACTIONS(2249), - [anon_sym_u32] = ACTIONS(2249), - [anon_sym_i32] = ACTIONS(2249), - [anon_sym_u64] = ACTIONS(2249), - [anon_sym_i64] = ACTIONS(2249), - [anon_sym_u128] = ACTIONS(2249), - [anon_sym_i128] = ACTIONS(2249), - [anon_sym_isize] = ACTIONS(2249), - [anon_sym_usize] = ACTIONS(2249), - [anon_sym_f32] = ACTIONS(2249), - [anon_sym_f64] = ACTIONS(2249), - [anon_sym_bool] = ACTIONS(2249), - [anon_sym_str] = ACTIONS(2249), - [anon_sym_char] = ACTIONS(2249), - [aux_sym__non_special_token_token1] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_as] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_fn] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_impl] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_loop] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_mod] = ACTIONS(2249), - [anon_sym_pub] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_struct] = ACTIONS(2249), - [anon_sym_trait] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_union] = ACTIONS(2249), - [anon_sym_unsafe] = ACTIONS(2249), - [anon_sym_use] = ACTIONS(2249), - [anon_sym_where] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [sym_mutable_specifier] = ACTIONS(2249), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(2251), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), - [sym_block_comment] = ACTIONS(3), - }, - [533] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_RPAREN] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), - [sym_block_comment] = ACTIONS(3), - }, - [534] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2253), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [535] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [536] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [537] = { - [sym_delim_token_tree] = STATE(534), - [sym__delim_tokens] = STATE(534), - [sym__non_delim_token] = STATE(534), - [sym__literal] = STATE(534), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(534), - [sym_identifier] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2259), - [anon_sym_u8] = ACTIONS(2255), - [anon_sym_i8] = ACTIONS(2255), - [anon_sym_u16] = ACTIONS(2255), - [anon_sym_i16] = ACTIONS(2255), - [anon_sym_u32] = ACTIONS(2255), - [anon_sym_i32] = ACTIONS(2255), - [anon_sym_u64] = ACTIONS(2255), - [anon_sym_i64] = ACTIONS(2255), - [anon_sym_u128] = ACTIONS(2255), - [anon_sym_i128] = ACTIONS(2255), - [anon_sym_isize] = ACTIONS(2255), - [anon_sym_usize] = ACTIONS(2255), - [anon_sym_f32] = ACTIONS(2255), - [anon_sym_f64] = ACTIONS(2255), - [anon_sym_bool] = ACTIONS(2255), - [anon_sym_str] = ACTIONS(2255), - [anon_sym_char] = ACTIONS(2255), - [aux_sym__non_special_token_token1] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2255), - [anon_sym_as] = ACTIONS(2255), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_default] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [anon_sym_fn] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_impl] = ACTIONS(2255), - [anon_sym_let] = ACTIONS(2255), - [anon_sym_loop] = ACTIONS(2255), - [anon_sym_match] = ACTIONS(2255), - [anon_sym_mod] = ACTIONS(2255), - [anon_sym_pub] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(2255), - [anon_sym_trait] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_union] = ACTIONS(2255), - [anon_sym_unsafe] = ACTIONS(2255), - [anon_sym_use] = ACTIONS(2255), - [anon_sym_where] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [sym_mutable_specifier] = ACTIONS(2255), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2255), - [sym_super] = ACTIONS(2255), - [sym_crate] = ACTIONS(2255), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [538] = { - [sym_token_tree] = STATE(525), - [sym_token_repetition] = STATE(525), - [sym__literal] = STATE(525), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(525), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2261), - [anon_sym_i8] = ACTIONS(2261), - [anon_sym_u16] = ACTIONS(2261), - [anon_sym_i16] = ACTIONS(2261), - [anon_sym_u32] = ACTIONS(2261), - [anon_sym_i32] = ACTIONS(2261), - [anon_sym_u64] = ACTIONS(2261), - [anon_sym_i64] = ACTIONS(2261), - [anon_sym_u128] = ACTIONS(2261), - [anon_sym_i128] = ACTIONS(2261), - [anon_sym_isize] = ACTIONS(2261), - [anon_sym_usize] = ACTIONS(2261), - [anon_sym_f32] = ACTIONS(2261), - [anon_sym_f64] = ACTIONS(2261), - [anon_sym_bool] = ACTIONS(2261), - [anon_sym_str] = ACTIONS(2261), - [anon_sym_char] = ACTIONS(2261), - [aux_sym__non_special_token_token1] = ACTIONS(2261), - [anon_sym_SQUOTE] = ACTIONS(2261), - [anon_sym_as] = ACTIONS(2261), - [anon_sym_async] = ACTIONS(2261), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_default] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - [anon_sym_fn] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_impl] = ACTIONS(2261), - [anon_sym_let] = ACTIONS(2261), - [anon_sym_loop] = ACTIONS(2261), - [anon_sym_match] = ACTIONS(2261), - [anon_sym_mod] = ACTIONS(2261), - [anon_sym_pub] = ACTIONS(2261), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_static] = ACTIONS(2261), - [anon_sym_struct] = ACTIONS(2261), - [anon_sym_trait] = ACTIONS(2261), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_union] = ACTIONS(2261), - [anon_sym_unsafe] = ACTIONS(2261), - [anon_sym_use] = ACTIONS(2261), - [anon_sym_where] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2261), - [sym_mutable_specifier] = ACTIONS(2261), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2261), - [sym_super] = ACTIONS(2261), - [sym_crate] = ACTIONS(2261), - [sym_metavariable] = ACTIONS(2263), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), - [sym_block_comment] = ACTIONS(3), - }, - [539] = { - [sym_delim_token_tree] = STATE(535), - [sym__delim_tokens] = STATE(535), - [sym__non_delim_token] = STATE(535), - [sym__literal] = STATE(535), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(535), + [sym_delim_token_tree] = STATE(522), + [sym__delim_tokens] = STATE(522), + [sym__non_delim_token] = STATE(522), + [sym__literal] = STATE(522), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(522), [sym_identifier] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2269), [anon_sym_u8] = ACTIONS(2265), [anon_sym_i8] = ACTIONS(2265), [anon_sym_u16] = ACTIONS(2265), @@ -65086,431 +67174,505 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2265), [anon_sym_while] = ACTIONS(2265), [sym_mutable_specifier] = ACTIONS(2265), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), [sym_line_comment] = ACTIONS(1097), [sym_self] = ACTIONS(2265), [sym_super] = ACTIONS(2265), [sym_crate] = ACTIONS(2265), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, - [540] = { - [sym_delim_token_tree] = STATE(536), - [sym__delim_tokens] = STATE(536), - [sym__non_delim_token] = STATE(536), - [sym__literal] = STATE(536), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(536), - [sym_identifier] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_u8] = ACTIONS(2269), - [anon_sym_i8] = ACTIONS(2269), - [anon_sym_u16] = ACTIONS(2269), - [anon_sym_i16] = ACTIONS(2269), - [anon_sym_u32] = ACTIONS(2269), - [anon_sym_i32] = ACTIONS(2269), - [anon_sym_u64] = ACTIONS(2269), - [anon_sym_i64] = ACTIONS(2269), - [anon_sym_u128] = ACTIONS(2269), - [anon_sym_i128] = ACTIONS(2269), - [anon_sym_isize] = ACTIONS(2269), - [anon_sym_usize] = ACTIONS(2269), - [anon_sym_f32] = ACTIONS(2269), - [anon_sym_f64] = ACTIONS(2269), - [anon_sym_bool] = ACTIONS(2269), - [anon_sym_str] = ACTIONS(2269), - [anon_sym_char] = ACTIONS(2269), - [aux_sym__non_special_token_token1] = ACTIONS(2269), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_as] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2269), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_default] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_impl] = ACTIONS(2269), - [anon_sym_let] = ACTIONS(2269), - [anon_sym_loop] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_mod] = ACTIONS(2269), - [anon_sym_pub] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_static] = ACTIONS(2269), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_trait] = ACTIONS(2269), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(2269), - [anon_sym_unsafe] = ACTIONS(2269), - [anon_sym_use] = ACTIONS(2269), - [anon_sym_where] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [sym_mutable_specifier] = ACTIONS(2269), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), + [531] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = 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_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2269), - [sym_super] = ACTIONS(2269), - [sym_crate] = ACTIONS(2269), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, - [541] = { - [sym_delim_token_tree] = STATE(549), - [sym__delim_tokens] = STATE(549), - [sym__non_delim_token] = STATE(549), - [sym__literal] = STATE(549), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(549), - [sym_identifier] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2183), + [532] = { + [sym_delim_token_tree] = STATE(557), + [sym__delim_tokens] = STATE(557), + [sym__non_delim_token] = STATE(557), + [sym__literal] = STATE(557), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(557), + [sym_identifier] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_u8] = ACTIONS(2273), - [anon_sym_i8] = ACTIONS(2273), - [anon_sym_u16] = ACTIONS(2273), - [anon_sym_i16] = ACTIONS(2273), - [anon_sym_u32] = ACTIONS(2273), - [anon_sym_i32] = ACTIONS(2273), - [anon_sym_u64] = ACTIONS(2273), - [anon_sym_i64] = ACTIONS(2273), - [anon_sym_u128] = ACTIONS(2273), - [anon_sym_i128] = ACTIONS(2273), - [anon_sym_isize] = ACTIONS(2273), - [anon_sym_usize] = ACTIONS(2273), - [anon_sym_f32] = ACTIONS(2273), - [anon_sym_f64] = ACTIONS(2273), - [anon_sym_bool] = ACTIONS(2273), - [anon_sym_str] = ACTIONS(2273), - [anon_sym_char] = ACTIONS(2273), - [aux_sym__non_special_token_token1] = ACTIONS(2273), - [anon_sym_SQUOTE] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_async] = ACTIONS(2273), - [anon_sym_await] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_default] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_impl] = ACTIONS(2273), - [anon_sym_let] = ACTIONS(2273), - [anon_sym_loop] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_mod] = ACTIONS(2273), - [anon_sym_pub] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_static] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_trait] = ACTIONS(2273), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_where] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [sym_mutable_specifier] = ACTIONS(2273), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2273), - [sym_super] = ACTIONS(2273), - [sym_crate] = ACTIONS(2273), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [542] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [543] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), + [anon_sym_u8] = ACTIONS(2271), + [anon_sym_i8] = ACTIONS(2271), + [anon_sym_u16] = ACTIONS(2271), + [anon_sym_i16] = ACTIONS(2271), + [anon_sym_u32] = ACTIONS(2271), + [anon_sym_i32] = ACTIONS(2271), + [anon_sym_u64] = ACTIONS(2271), + [anon_sym_i64] = ACTIONS(2271), + [anon_sym_u128] = ACTIONS(2271), + [anon_sym_i128] = ACTIONS(2271), + [anon_sym_isize] = ACTIONS(2271), + [anon_sym_usize] = ACTIONS(2271), + [anon_sym_f32] = ACTIONS(2271), + [anon_sym_f64] = ACTIONS(2271), + [anon_sym_bool] = ACTIONS(2271), + [anon_sym_str] = ACTIONS(2271), + [anon_sym_char] = ACTIONS(2271), + [aux_sym__non_special_token_token1] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2271), + [anon_sym_as] = ACTIONS(2271), + [anon_sym_async] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_break] = ACTIONS(2271), + [anon_sym_const] = ACTIONS(2271), + [anon_sym_continue] = ACTIONS(2271), + [anon_sym_default] = ACTIONS(2271), + [anon_sym_enum] = ACTIONS(2271), + [anon_sym_fn] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2271), + [anon_sym_impl] = ACTIONS(2271), + [anon_sym_let] = ACTIONS(2271), + [anon_sym_loop] = ACTIONS(2271), + [anon_sym_match] = ACTIONS(2271), + [anon_sym_mod] = ACTIONS(2271), + [anon_sym_pub] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2271), + [anon_sym_static] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2271), + [anon_sym_trait] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2271), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_unsafe] = ACTIONS(2271), + [anon_sym_use] = ACTIONS(2271), + [anon_sym_where] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2271), + [sym_mutable_specifier] = ACTIONS(2271), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_self] = ACTIONS(2271), + [sym_super] = ACTIONS(2271), + [sym_crate] = ACTIONS(2271), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, - [544] = { - [sym_delim_token_tree] = STATE(548), - [sym__delim_tokens] = STATE(548), - [sym__non_delim_token] = STATE(548), - [sym__literal] = STATE(548), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(548), - [sym_identifier] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_u8] = ACTIONS(2277), - [anon_sym_i8] = ACTIONS(2277), - [anon_sym_u16] = ACTIONS(2277), - [anon_sym_i16] = ACTIONS(2277), - [anon_sym_u32] = ACTIONS(2277), - [anon_sym_i32] = ACTIONS(2277), - [anon_sym_u64] = ACTIONS(2277), - [anon_sym_i64] = ACTIONS(2277), - [anon_sym_u128] = ACTIONS(2277), - [anon_sym_i128] = ACTIONS(2277), - [anon_sym_isize] = ACTIONS(2277), - [anon_sym_usize] = ACTIONS(2277), - [anon_sym_f32] = ACTIONS(2277), - [anon_sym_f64] = ACTIONS(2277), - [anon_sym_bool] = ACTIONS(2277), - [anon_sym_str] = ACTIONS(2277), - [anon_sym_char] = ACTIONS(2277), - [aux_sym__non_special_token_token1] = ACTIONS(2277), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_as] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2277), - [anon_sym_await] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_default] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_fn] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_impl] = ACTIONS(2277), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_loop] = ACTIONS(2277), - [anon_sym_match] = ACTIONS(2277), - [anon_sym_mod] = ACTIONS(2277), - [anon_sym_pub] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_struct] = ACTIONS(2277), - [anon_sym_trait] = ACTIONS(2277), - [anon_sym_type] = ACTIONS(2277), - [anon_sym_union] = ACTIONS(2277), - [anon_sym_unsafe] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_where] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [sym_mutable_specifier] = ACTIONS(2277), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), + [533] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = 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_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2277), - [sym_super] = ACTIONS(2277), - [sym_crate] = ACTIONS(2277), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, - [545] = { - [sym_token_tree] = STATE(527), - [sym_token_repetition] = STATE(527), - [sym__literal] = STATE(527), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(527), - [sym_identifier] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_RBRACK] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2283), - [anon_sym_i8] = ACTIONS(2283), - [anon_sym_u16] = ACTIONS(2283), - [anon_sym_i16] = ACTIONS(2283), - [anon_sym_u32] = ACTIONS(2283), - [anon_sym_i32] = ACTIONS(2283), - [anon_sym_u64] = ACTIONS(2283), - [anon_sym_i64] = ACTIONS(2283), - [anon_sym_u128] = ACTIONS(2283), - [anon_sym_i128] = ACTIONS(2283), - [anon_sym_isize] = ACTIONS(2283), - [anon_sym_usize] = ACTIONS(2283), - [anon_sym_f32] = ACTIONS(2283), - [anon_sym_f64] = ACTIONS(2283), - [anon_sym_bool] = ACTIONS(2283), - [anon_sym_str] = ACTIONS(2283), - [anon_sym_char] = ACTIONS(2283), - [aux_sym__non_special_token_token1] = ACTIONS(2283), - [anon_sym_SQUOTE] = ACTIONS(2283), - [anon_sym_as] = ACTIONS(2283), - [anon_sym_async] = ACTIONS(2283), - [anon_sym_await] = ACTIONS(2283), - [anon_sym_break] = ACTIONS(2283), - [anon_sym_const] = ACTIONS(2283), - [anon_sym_continue] = ACTIONS(2283), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_enum] = ACTIONS(2283), - [anon_sym_fn] = ACTIONS(2283), - [anon_sym_for] = ACTIONS(2283), + [534] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = 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_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_block_comment] = ACTIONS(3), + }, + [535] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RBRACK] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = 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_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_block_comment] = ACTIONS(3), + }, + [536] = { + [sym_delim_token_tree] = STATE(544), + [sym__delim_tokens] = STATE(544), + [sym__non_delim_token] = STATE(544), + [sym__literal] = STATE(544), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(544), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_u8] = ACTIONS(2279), + [anon_sym_i8] = ACTIONS(2279), + [anon_sym_u16] = ACTIONS(2279), + [anon_sym_i16] = ACTIONS(2279), + [anon_sym_u32] = ACTIONS(2279), + [anon_sym_i32] = ACTIONS(2279), + [anon_sym_u64] = ACTIONS(2279), + [anon_sym_i64] = ACTIONS(2279), + [anon_sym_u128] = ACTIONS(2279), + [anon_sym_i128] = ACTIONS(2279), + [anon_sym_isize] = ACTIONS(2279), + [anon_sym_usize] = ACTIONS(2279), + [anon_sym_f32] = ACTIONS(2279), + [anon_sym_f64] = ACTIONS(2279), + [anon_sym_bool] = ACTIONS(2279), + [anon_sym_str] = ACTIONS(2279), + [anon_sym_char] = ACTIONS(2279), + [aux_sym__non_special_token_token1] = ACTIONS(2279), + [anon_sym_SQUOTE] = ACTIONS(2279), + [anon_sym_as] = ACTIONS(2279), + [anon_sym_async] = ACTIONS(2279), + [anon_sym_await] = ACTIONS(2279), + [anon_sym_break] = ACTIONS(2279), + [anon_sym_const] = ACTIONS(2279), + [anon_sym_continue] = ACTIONS(2279), + [anon_sym_default] = ACTIONS(2279), + [anon_sym_enum] = ACTIONS(2279), + [anon_sym_fn] = ACTIONS(2279), + [anon_sym_for] = ACTIONS(2279), + [anon_sym_if] = ACTIONS(2279), + [anon_sym_impl] = ACTIONS(2279), + [anon_sym_let] = ACTIONS(2279), + [anon_sym_loop] = ACTIONS(2279), + [anon_sym_match] = ACTIONS(2279), + [anon_sym_mod] = ACTIONS(2279), + [anon_sym_pub] = ACTIONS(2279), + [anon_sym_return] = ACTIONS(2279), + [anon_sym_static] = ACTIONS(2279), + [anon_sym_struct] = ACTIONS(2279), + [anon_sym_trait] = ACTIONS(2279), + [anon_sym_type] = ACTIONS(2279), + [anon_sym_union] = ACTIONS(2279), + [anon_sym_unsafe] = ACTIONS(2279), + [anon_sym_use] = ACTIONS(2279), + [anon_sym_where] = ACTIONS(2279), + [anon_sym_while] = ACTIONS(2279), + [sym_mutable_specifier] = ACTIONS(2279), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2279), + [sym_super] = ACTIONS(2279), + [sym_crate] = ACTIONS(2279), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_block_comment] = ACTIONS(3), + }, + [537] = { + [sym_token_tree] = STATE(561), + [sym_token_repetition] = STATE(561), + [sym__literal] = STATE(561), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_repeat1] = STATE(561), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2283), + [anon_sym_i8] = ACTIONS(2283), + [anon_sym_u16] = ACTIONS(2283), + [anon_sym_i16] = ACTIONS(2283), + [anon_sym_u32] = ACTIONS(2283), + [anon_sym_i32] = ACTIONS(2283), + [anon_sym_u64] = ACTIONS(2283), + [anon_sym_i64] = ACTIONS(2283), + [anon_sym_u128] = ACTIONS(2283), + [anon_sym_i128] = ACTIONS(2283), + [anon_sym_isize] = ACTIONS(2283), + [anon_sym_usize] = ACTIONS(2283), + [anon_sym_f32] = ACTIONS(2283), + [anon_sym_f64] = ACTIONS(2283), + [anon_sym_bool] = ACTIONS(2283), + [anon_sym_str] = ACTIONS(2283), + [anon_sym_char] = ACTIONS(2283), + [aux_sym__non_special_token_token1] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(2283), + [anon_sym_as] = ACTIONS(2283), + [anon_sym_async] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2283), + [anon_sym_break] = ACTIONS(2283), + [anon_sym_const] = ACTIONS(2283), + [anon_sym_continue] = ACTIONS(2283), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_enum] = ACTIONS(2283), + [anon_sym_fn] = ACTIONS(2283), + [anon_sym_for] = ACTIONS(2283), [anon_sym_if] = ACTIONS(2283), [anon_sym_impl] = ACTIONS(2283), [anon_sym_let] = ACTIONS(2283), @@ -65529,403 +67691,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2283), [anon_sym_while] = ACTIONS(2283), [sym_mutable_specifier] = ACTIONS(2283), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), [sym_self] = ACTIONS(2283), [sym_super] = ACTIONS(2283), [sym_crate] = ACTIONS(2283), [sym_metavariable] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), - [sym_block_comment] = ACTIONS(3), - }, - [546] = { - [sym_delim_token_tree] = STATE(530), - [sym__delim_tokens] = STATE(530), - [sym__non_delim_token] = STATE(530), - [sym__literal] = STATE(530), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(530), - [sym_identifier] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2293), - [anon_sym_u8] = ACTIONS(2289), - [anon_sym_i8] = ACTIONS(2289), - [anon_sym_u16] = ACTIONS(2289), - [anon_sym_i16] = ACTIONS(2289), - [anon_sym_u32] = ACTIONS(2289), - [anon_sym_i32] = ACTIONS(2289), - [anon_sym_u64] = ACTIONS(2289), - [anon_sym_i64] = ACTIONS(2289), - [anon_sym_u128] = ACTIONS(2289), - [anon_sym_i128] = ACTIONS(2289), - [anon_sym_isize] = ACTIONS(2289), - [anon_sym_usize] = ACTIONS(2289), - [anon_sym_f32] = ACTIONS(2289), - [anon_sym_f64] = ACTIONS(2289), - [anon_sym_bool] = ACTIONS(2289), - [anon_sym_str] = ACTIONS(2289), - [anon_sym_char] = ACTIONS(2289), - [aux_sym__non_special_token_token1] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_default] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - [anon_sym_fn] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_impl] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_loop] = ACTIONS(2289), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_mod] = ACTIONS(2289), - [anon_sym_pub] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_static] = ACTIONS(2289), - [anon_sym_struct] = ACTIONS(2289), - [anon_sym_trait] = ACTIONS(2289), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_union] = ACTIONS(2289), - [anon_sym_unsafe] = ACTIONS(2289), - [anon_sym_use] = ACTIONS(2289), - [anon_sym_where] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [sym_mutable_specifier] = ACTIONS(2289), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2289), - [sym_super] = ACTIONS(2289), - [sym_crate] = ACTIONS(2289), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, - [547] = { - [sym_delim_token_tree] = STATE(552), - [sym__delim_tokens] = STATE(552), - [sym__non_delim_token] = STATE(552), - [sym__literal] = STATE(552), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(552), - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2297), - [anon_sym_u8] = ACTIONS(2295), - [anon_sym_i8] = ACTIONS(2295), - [anon_sym_u16] = ACTIONS(2295), - [anon_sym_i16] = ACTIONS(2295), - [anon_sym_u32] = ACTIONS(2295), - [anon_sym_i32] = ACTIONS(2295), - [anon_sym_u64] = ACTIONS(2295), - [anon_sym_i64] = ACTIONS(2295), - [anon_sym_u128] = ACTIONS(2295), - [anon_sym_i128] = ACTIONS(2295), - [anon_sym_isize] = ACTIONS(2295), - [anon_sym_usize] = ACTIONS(2295), - [anon_sym_f32] = ACTIONS(2295), - [anon_sym_f64] = ACTIONS(2295), - [anon_sym_bool] = ACTIONS(2295), - [anon_sym_str] = ACTIONS(2295), - [anon_sym_char] = ACTIONS(2295), - [aux_sym__non_special_token_token1] = ACTIONS(2295), - [anon_sym_SQUOTE] = ACTIONS(2295), - [anon_sym_as] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2295), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_break] = ACTIONS(2295), - [anon_sym_const] = ACTIONS(2295), - [anon_sym_continue] = ACTIONS(2295), - [anon_sym_default] = ACTIONS(2295), - [anon_sym_enum] = ACTIONS(2295), - [anon_sym_fn] = ACTIONS(2295), - [anon_sym_for] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2295), - [anon_sym_impl] = ACTIONS(2295), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_loop] = ACTIONS(2295), - [anon_sym_match] = ACTIONS(2295), - [anon_sym_mod] = ACTIONS(2295), - [anon_sym_pub] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2295), - [anon_sym_static] = ACTIONS(2295), - [anon_sym_struct] = ACTIONS(2295), - [anon_sym_trait] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2295), - [anon_sym_union] = ACTIONS(2295), - [anon_sym_unsafe] = ACTIONS(2295), - [anon_sym_use] = ACTIONS(2295), - [anon_sym_where] = ACTIONS(2295), - [anon_sym_while] = ACTIONS(2295), - [sym_mutable_specifier] = ACTIONS(2295), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), + [538] = { + [sym_token_tree] = STATE(516), + [sym_token_repetition] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2251), + [anon_sym_i8] = ACTIONS(2251), + [anon_sym_u16] = ACTIONS(2251), + [anon_sym_i16] = ACTIONS(2251), + [anon_sym_u32] = ACTIONS(2251), + [anon_sym_i32] = ACTIONS(2251), + [anon_sym_u64] = ACTIONS(2251), + [anon_sym_i64] = ACTIONS(2251), + [anon_sym_u128] = ACTIONS(2251), + [anon_sym_i128] = ACTIONS(2251), + [anon_sym_isize] = ACTIONS(2251), + [anon_sym_usize] = ACTIONS(2251), + [anon_sym_f32] = ACTIONS(2251), + [anon_sym_f64] = ACTIONS(2251), + [anon_sym_bool] = ACTIONS(2251), + [anon_sym_str] = ACTIONS(2251), + [anon_sym_char] = ACTIONS(2251), + [aux_sym__non_special_token_token1] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_impl] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_mod] = ACTIONS(2251), + [anon_sym_pub] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2251), + [anon_sym_trait] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_union] = ACTIONS(2251), + [anon_sym_unsafe] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_where] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [sym_mutable_specifier] = ACTIONS(2251), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2295), - [sym_super] = ACTIONS(2295), - [sym_crate] = ACTIONS(2295), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_crate] = ACTIONS(2251), + [sym_metavariable] = ACTIONS(2255), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), [sym_block_comment] = ACTIONS(3), }, - [548] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), + [539] = { + [sym_delim_token_tree] = STATE(551), + [sym__delim_tokens] = STATE(551), + [sym__non_delim_token] = STATE(551), + [sym__literal] = STATE(551), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(551), + [sym_identifier] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RBRACK] = ACTIONS(2293), + [anon_sym_DOLLAR] = ACTIONS(2295), + [anon_sym_u8] = ACTIONS(2291), + [anon_sym_i8] = ACTIONS(2291), + [anon_sym_u16] = ACTIONS(2291), + [anon_sym_i16] = ACTIONS(2291), + [anon_sym_u32] = ACTIONS(2291), + [anon_sym_i32] = ACTIONS(2291), + [anon_sym_u64] = ACTIONS(2291), + [anon_sym_i64] = ACTIONS(2291), + [anon_sym_u128] = ACTIONS(2291), + [anon_sym_i128] = ACTIONS(2291), + [anon_sym_isize] = ACTIONS(2291), + [anon_sym_usize] = ACTIONS(2291), + [anon_sym_f32] = ACTIONS(2291), + [anon_sym_f64] = ACTIONS(2291), + [anon_sym_bool] = ACTIONS(2291), + [anon_sym_str] = ACTIONS(2291), + [anon_sym_char] = ACTIONS(2291), + [aux_sym__non_special_token_token1] = ACTIONS(2291), + [anon_sym_SQUOTE] = ACTIONS(2291), + [anon_sym_as] = ACTIONS(2291), + [anon_sym_async] = ACTIONS(2291), + [anon_sym_await] = ACTIONS(2291), + [anon_sym_break] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_continue] = ACTIONS(2291), + [anon_sym_default] = ACTIONS(2291), + [anon_sym_enum] = ACTIONS(2291), + [anon_sym_fn] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2291), + [anon_sym_impl] = ACTIONS(2291), + [anon_sym_let] = ACTIONS(2291), + [anon_sym_loop] = ACTIONS(2291), + [anon_sym_match] = ACTIONS(2291), + [anon_sym_mod] = ACTIONS(2291), + [anon_sym_pub] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_static] = ACTIONS(2291), + [anon_sym_struct] = ACTIONS(2291), + [anon_sym_trait] = ACTIONS(2291), + [anon_sym_type] = ACTIONS(2291), + [anon_sym_union] = ACTIONS(2291), + [anon_sym_unsafe] = ACTIONS(2291), + [anon_sym_use] = ACTIONS(2291), + [anon_sym_where] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [sym_mutable_specifier] = ACTIONS(2291), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_self] = ACTIONS(2291), + [sym_super] = ACTIONS(2291), + [sym_crate] = ACTIONS(2291), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, - [549] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), + [540] = { + [sym_delim_token_tree] = STATE(545), + [sym__delim_tokens] = STATE(545), + [sym__non_delim_token] = STATE(545), + [sym__literal] = STATE(545), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(545), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RBRACK] = ACTIONS(2267), + [anon_sym_DOLLAR] = ACTIONS(2299), + [anon_sym_u8] = ACTIONS(2297), + [anon_sym_i8] = ACTIONS(2297), + [anon_sym_u16] = ACTIONS(2297), + [anon_sym_i16] = ACTIONS(2297), + [anon_sym_u32] = ACTIONS(2297), + [anon_sym_i32] = ACTIONS(2297), + [anon_sym_u64] = ACTIONS(2297), + [anon_sym_i64] = ACTIONS(2297), + [anon_sym_u128] = ACTIONS(2297), + [anon_sym_i128] = ACTIONS(2297), + [anon_sym_isize] = ACTIONS(2297), + [anon_sym_usize] = ACTIONS(2297), + [anon_sym_f32] = ACTIONS(2297), + [anon_sym_f64] = ACTIONS(2297), + [anon_sym_bool] = ACTIONS(2297), + [anon_sym_str] = ACTIONS(2297), + [anon_sym_char] = ACTIONS(2297), + [aux_sym__non_special_token_token1] = ACTIONS(2297), + [anon_sym_SQUOTE] = ACTIONS(2297), + [anon_sym_as] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_default] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_fn] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_impl] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_loop] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_mod] = ACTIONS(2297), + [anon_sym_pub] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_static] = ACTIONS(2297), + [anon_sym_struct] = ACTIONS(2297), + [anon_sym_trait] = ACTIONS(2297), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_union] = ACTIONS(2297), + [anon_sym_unsafe] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_where] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [sym_mutable_specifier] = ACTIONS(2297), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_self] = ACTIONS(2297), + [sym_super] = ACTIONS(2297), + [sym_crate] = ACTIONS(2297), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, - [550] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_RPAREN] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [541] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = 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_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, - [551] = { - [sym_delim_token_tree] = STATE(528), - [sym__delim_tokens] = STATE(528), - [sym__non_delim_token] = STATE(528), - [sym__literal] = STATE(528), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(528), + [542] = { + [sym_delim_token_tree] = STATE(556), + [sym__delim_tokens] = STATE(556), + [sym__non_delim_token] = STATE(556), + [sym__literal] = STATE(556), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(556), [sym_identifier] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2217), [anon_sym_DOLLAR] = ACTIONS(2303), [anon_sym_u8] = ACTIONS(2301), [anon_sym_i8] = ACTIONS(2301), @@ -65974,106 +68062,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2301), [anon_sym_while] = ACTIONS(2301), [sym_mutable_specifier] = ACTIONS(2301), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), [sym_line_comment] = ACTIONS(1097), [sym_self] = ACTIONS(2301), [sym_super] = ACTIONS(2301), [sym_crate] = ACTIONS(2301), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, - [552] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [553] = { - [sym_token_tree] = STATE(524), - [sym_token_repetition] = STATE(524), - [sym__literal] = STATE(524), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(524), + [543] = { + [sym_delim_token_tree] = STATE(529), + [sym__delim_tokens] = STATE(529), + [sym__non_delim_token] = STATE(529), + [sym__literal] = STATE(529), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(529), [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RBRACK] = ACTIONS(2307), + [anon_sym_DOLLAR] = ACTIONS(2309), [anon_sym_u8] = ACTIONS(2305), [anon_sym_i8] = ACTIONS(2305), [anon_sym_u16] = ACTIONS(2305), @@ -66121,255 +68136,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2305), [anon_sym_while] = ACTIONS(2305), [sym_mutable_specifier] = ACTIONS(2305), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), [sym_line_comment] = ACTIONS(1097), [sym_self] = ACTIONS(2305), [sym_super] = ACTIONS(2305), [sym_crate] = ACTIONS(2305), - [sym_metavariable] = ACTIONS(2307), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), - [sym_block_comment] = ACTIONS(3), - }, - [554] = { - [sym_delim_token_tree] = STATE(526), - [sym__delim_tokens] = STATE(526), - [sym__non_delim_token] = STATE(526), - [sym__literal] = STATE(526), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(526), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2311), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2309), - [anon_sym_SQUOTE] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(2309), - [anon_sym_async] = ACTIONS(2309), - [anon_sym_await] = 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_where] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [sym_mutable_specifier] = ACTIONS(2309), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2309), - [sym_super] = ACTIONS(2309), - [sym_crate] = ACTIONS(2309), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, - [555] = { - [sym_delim_token_tree] = STATE(529), - [sym__delim_tokens] = STATE(529), - [sym__non_delim_token] = STATE(529), - [sym__literal] = STATE(529), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(529), - [sym_identifier] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2315), - [anon_sym_u8] = ACTIONS(2313), - [anon_sym_i8] = ACTIONS(2313), - [anon_sym_u16] = ACTIONS(2313), - [anon_sym_i16] = ACTIONS(2313), - [anon_sym_u32] = ACTIONS(2313), - [anon_sym_i32] = ACTIONS(2313), - [anon_sym_u64] = ACTIONS(2313), - [anon_sym_i64] = ACTIONS(2313), - [anon_sym_u128] = ACTIONS(2313), - [anon_sym_i128] = ACTIONS(2313), - [anon_sym_isize] = ACTIONS(2313), - [anon_sym_usize] = ACTIONS(2313), - [anon_sym_f32] = ACTIONS(2313), - [anon_sym_f64] = ACTIONS(2313), - [anon_sym_bool] = ACTIONS(2313), - [anon_sym_str] = ACTIONS(2313), - [anon_sym_char] = ACTIONS(2313), - [aux_sym__non_special_token_token1] = ACTIONS(2313), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(2313), - [anon_sym_await] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_default] = ACTIONS(2313), - [anon_sym_enum] = ACTIONS(2313), - [anon_sym_fn] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_impl] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_loop] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_mod] = ACTIONS(2313), - [anon_sym_pub] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_static] = ACTIONS(2313), - [anon_sym_struct] = ACTIONS(2313), - [anon_sym_trait] = ACTIONS(2313), - [anon_sym_type] = ACTIONS(2313), - [anon_sym_union] = ACTIONS(2313), - [anon_sym_unsafe] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_where] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [sym_mutable_specifier] = ACTIONS(2313), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), + [544] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = 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_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2313), - [sym_super] = ACTIONS(2313), - [sym_crate] = ACTIONS(2313), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, - [556] = { - [sym_token_tree] = STATE(522), - [sym_token_repetition] = STATE(522), - [sym__literal] = STATE(522), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(522), - [sym_identifier] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2317), - [anon_sym_i8] = ACTIONS(2317), - [anon_sym_u16] = ACTIONS(2317), - [anon_sym_i16] = ACTIONS(2317), - [anon_sym_u32] = ACTIONS(2317), - [anon_sym_i32] = ACTIONS(2317), - [anon_sym_u64] = ACTIONS(2317), - [anon_sym_i64] = ACTIONS(2317), - [anon_sym_u128] = ACTIONS(2317), - [anon_sym_i128] = ACTIONS(2317), - [anon_sym_isize] = ACTIONS(2317), - [anon_sym_usize] = ACTIONS(2317), - [anon_sym_f32] = ACTIONS(2317), - [anon_sym_f64] = ACTIONS(2317), - [anon_sym_bool] = ACTIONS(2317), - [anon_sym_str] = ACTIONS(2317), - [anon_sym_char] = ACTIONS(2317), - [aux_sym__non_special_token_token1] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_as] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), - [anon_sym_fn] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_impl] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_loop] = ACTIONS(2317), - [anon_sym_match] = ACTIONS(2317), - [anon_sym_mod] = ACTIONS(2317), - [anon_sym_pub] = ACTIONS(2317), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_static] = ACTIONS(2317), - [anon_sym_struct] = ACTIONS(2317), - [anon_sym_trait] = ACTIONS(2317), - [anon_sym_type] = ACTIONS(2317), - [anon_sym_union] = ACTIONS(2317), - [anon_sym_unsafe] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_where] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [sym_mutable_specifier] = ACTIONS(2317), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [545] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RBRACK] = ACTIONS(2213), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = 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_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2317), - [sym_super] = ACTIONS(2317), - [sym_crate] = ACTIONS(2317), - [sym_metavariable] = ACTIONS(2319), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, - [557] = { + [546] = { [sym_delim_token_tree] = STATE(531), [sym__delim_tokens] = STATE(531), [sym__non_delim_token] = STATE(531), [sym__literal] = STATE(531), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), [aux_sym_delim_token_tree_repeat1] = STATE(531), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_u8] = ACTIONS(2311), + [anon_sym_i8] = ACTIONS(2311), + [anon_sym_u16] = ACTIONS(2311), + [anon_sym_i16] = ACTIONS(2311), + [anon_sym_u32] = ACTIONS(2311), + [anon_sym_i32] = ACTIONS(2311), + [anon_sym_u64] = ACTIONS(2311), + [anon_sym_i64] = ACTIONS(2311), + [anon_sym_u128] = ACTIONS(2311), + [anon_sym_i128] = ACTIONS(2311), + [anon_sym_isize] = ACTIONS(2311), + [anon_sym_usize] = ACTIONS(2311), + [anon_sym_f32] = ACTIONS(2311), + [anon_sym_f64] = ACTIONS(2311), + [anon_sym_bool] = ACTIONS(2311), + [anon_sym_str] = ACTIONS(2311), + [anon_sym_char] = ACTIONS(2311), + [aux_sym__non_special_token_token1] = ACTIONS(2311), + [anon_sym_SQUOTE] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_async] = ACTIONS(2311), + [anon_sym_await] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_default] = ACTIONS(2311), + [anon_sym_enum] = ACTIONS(2311), + [anon_sym_fn] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_impl] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_mod] = ACTIONS(2311), + [anon_sym_pub] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_static] = ACTIONS(2311), + [anon_sym_struct] = ACTIONS(2311), + [anon_sym_trait] = ACTIONS(2311), + [anon_sym_type] = ACTIONS(2311), + [anon_sym_union] = ACTIONS(2311), + [anon_sym_unsafe] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_where] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [sym_mutable_specifier] = ACTIONS(2311), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2311), + [sym_super] = ACTIONS(2311), + [sym_crate] = ACTIONS(2311), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_block_comment] = ACTIONS(3), + }, + [547] = { + [sym_delim_token_tree] = STATE(541), + [sym__delim_tokens] = STATE(541), + [sym__non_delim_token] = STATE(541), + [sym__literal] = STATE(541), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(541), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2317), + [anon_sym_u8] = ACTIONS(2315), + [anon_sym_i8] = ACTIONS(2315), + [anon_sym_u16] = ACTIONS(2315), + [anon_sym_i16] = ACTIONS(2315), + [anon_sym_u32] = ACTIONS(2315), + [anon_sym_i32] = ACTIONS(2315), + [anon_sym_u64] = ACTIONS(2315), + [anon_sym_i64] = ACTIONS(2315), + [anon_sym_u128] = ACTIONS(2315), + [anon_sym_i128] = ACTIONS(2315), + [anon_sym_isize] = ACTIONS(2315), + [anon_sym_usize] = ACTIONS(2315), + [anon_sym_f32] = ACTIONS(2315), + [anon_sym_f64] = ACTIONS(2315), + [anon_sym_bool] = ACTIONS(2315), + [anon_sym_str] = ACTIONS(2315), + [anon_sym_char] = ACTIONS(2315), + [aux_sym__non_special_token_token1] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_async] = ACTIONS(2315), + [anon_sym_await] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_default] = ACTIONS(2315), + [anon_sym_enum] = ACTIONS(2315), + [anon_sym_fn] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_impl] = ACTIONS(2315), + [anon_sym_let] = ACTIONS(2315), + [anon_sym_loop] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_mod] = ACTIONS(2315), + [anon_sym_pub] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_static] = ACTIONS(2315), + [anon_sym_struct] = ACTIONS(2315), + [anon_sym_trait] = ACTIONS(2315), + [anon_sym_type] = ACTIONS(2315), + [anon_sym_union] = ACTIONS(2315), + [anon_sym_unsafe] = ACTIONS(2315), + [anon_sym_use] = ACTIONS(2315), + [anon_sym_where] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2315), + [sym_mutable_specifier] = ACTIONS(2315), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2315), + [sym_super] = ACTIONS(2315), + [sym_crate] = ACTIONS(2315), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_block_comment] = ACTIONS(3), + }, + [548] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RBRACK] = ACTIONS(2319), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = 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_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_block_comment] = ACTIONS(3), + }, + [549] = { + [sym_token_tree] = STATE(516), + [sym_token_repetition] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2251), + [anon_sym_i8] = ACTIONS(2251), + [anon_sym_u16] = ACTIONS(2251), + [anon_sym_i16] = ACTIONS(2251), + [anon_sym_u32] = ACTIONS(2251), + [anon_sym_i32] = ACTIONS(2251), + [anon_sym_u64] = ACTIONS(2251), + [anon_sym_i64] = ACTIONS(2251), + [anon_sym_u128] = ACTIONS(2251), + [anon_sym_i128] = ACTIONS(2251), + [anon_sym_isize] = ACTIONS(2251), + [anon_sym_usize] = ACTIONS(2251), + [anon_sym_f32] = ACTIONS(2251), + [anon_sym_f64] = ACTIONS(2251), + [anon_sym_bool] = ACTIONS(2251), + [anon_sym_str] = ACTIONS(2251), + [anon_sym_char] = ACTIONS(2251), + [aux_sym__non_special_token_token1] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_impl] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_mod] = ACTIONS(2251), + [anon_sym_pub] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2251), + [anon_sym_trait] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_union] = ACTIONS(2251), + [anon_sym_unsafe] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_where] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [sym_mutable_specifier] = ACTIONS(2251), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_crate] = ACTIONS(2251), + [sym_metavariable] = ACTIONS(2255), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), + [sym_block_comment] = ACTIONS(3), + }, + [550] = { + [sym_delim_token_tree] = STATE(533), + [sym__delim_tokens] = STATE(533), + [sym__non_delim_token] = STATE(533), + [sym__literal] = STATE(533), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(533), [sym_identifier] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), [anon_sym_DOLLAR] = ACTIONS(2323), [anon_sym_u8] = ACTIONS(2321), [anon_sym_i8] = ACTIONS(2321), @@ -66418,221 +68654,1258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2321), [anon_sym_while] = ACTIONS(2321), [sym_mutable_specifier] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), [sym_line_comment] = ACTIONS(1097), [sym_self] = ACTIONS(2321), [sym_super] = ACTIONS(2321), [sym_crate] = ACTIONS(2321), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, - [558] = { - [sym_attribute_item] = STATE(640), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_pattern] = STATE(2461), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(640), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [551] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RBRACK] = ACTIONS(2325), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = 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_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, - [559] = { - [sym_attribute_item] = STATE(573), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(683), - [sym__type] = STATE(1874), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(573), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_extern] = ACTIONS(714), + [552] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = 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_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_block_comment] = ACTIONS(3), + }, + [553] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = 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_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_block_comment] = ACTIONS(3), + }, + [554] = { + [sym_delim_token_tree] = STATE(535), + [sym__delim_tokens] = STATE(535), + [sym__non_delim_token] = STATE(535), + [sym__literal] = STATE(535), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(535), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RBRACK] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2329), + [anon_sym_u8] = ACTIONS(2327), + [anon_sym_i8] = ACTIONS(2327), + [anon_sym_u16] = ACTIONS(2327), + [anon_sym_i16] = ACTIONS(2327), + [anon_sym_u32] = ACTIONS(2327), + [anon_sym_i32] = ACTIONS(2327), + [anon_sym_u64] = ACTIONS(2327), + [anon_sym_i64] = ACTIONS(2327), + [anon_sym_u128] = ACTIONS(2327), + [anon_sym_i128] = ACTIONS(2327), + [anon_sym_isize] = ACTIONS(2327), + [anon_sym_usize] = ACTIONS(2327), + [anon_sym_f32] = ACTIONS(2327), + [anon_sym_f64] = ACTIONS(2327), + [anon_sym_bool] = ACTIONS(2327), + [anon_sym_str] = ACTIONS(2327), + [anon_sym_char] = ACTIONS(2327), + [aux_sym__non_special_token_token1] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_as] = ACTIONS(2327), + [anon_sym_async] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), + [anon_sym_fn] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_impl] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_loop] = ACTIONS(2327), + [anon_sym_match] = ACTIONS(2327), + [anon_sym_mod] = ACTIONS(2327), + [anon_sym_pub] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2327), + [anon_sym_struct] = ACTIONS(2327), + [anon_sym_trait] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_union] = ACTIONS(2327), + [anon_sym_unsafe] = ACTIONS(2327), + [anon_sym_use] = ACTIONS(2327), + [anon_sym_where] = ACTIONS(2327), + [anon_sym_while] = ACTIONS(2327), + [sym_mutable_specifier] = ACTIONS(2327), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2327), + [sym_super] = ACTIONS(2327), + [sym_crate] = ACTIONS(2327), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_block_comment] = ACTIONS(3), + }, + [555] = { + [sym_token_tree] = STATE(516), + [sym_token_repetition] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_RBRACK] = ACTIONS(2331), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2251), + [anon_sym_i8] = ACTIONS(2251), + [anon_sym_u16] = ACTIONS(2251), + [anon_sym_i16] = ACTIONS(2251), + [anon_sym_u32] = ACTIONS(2251), + [anon_sym_i32] = ACTIONS(2251), + [anon_sym_u64] = ACTIONS(2251), + [anon_sym_i64] = ACTIONS(2251), + [anon_sym_u128] = ACTIONS(2251), + [anon_sym_i128] = ACTIONS(2251), + [anon_sym_isize] = ACTIONS(2251), + [anon_sym_usize] = ACTIONS(2251), + [anon_sym_f32] = ACTIONS(2251), + [anon_sym_f64] = ACTIONS(2251), + [anon_sym_bool] = ACTIONS(2251), + [anon_sym_str] = ACTIONS(2251), + [anon_sym_char] = ACTIONS(2251), + [aux_sym__non_special_token_token1] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_impl] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_mod] = ACTIONS(2251), + [anon_sym_pub] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2251), + [anon_sym_trait] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_union] = ACTIONS(2251), + [anon_sym_unsafe] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_where] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [sym_mutable_specifier] = ACTIONS(2251), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_crate] = ACTIONS(2251), + [sym_metavariable] = ACTIONS(2255), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), + [sym_block_comment] = ACTIONS(3), + }, + [556] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = 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_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_block_comment] = ACTIONS(3), + }, + [557] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = 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_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_block_comment] = ACTIONS(3), + }, + [558] = { + [sym_token_tree] = STATE(559), + [sym_token_repetition] = STATE(559), + [sym__literal] = STATE(559), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_repeat1] = STATE(559), + [sym_identifier] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2243), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2333), + [anon_sym_SQUOTE] = ACTIONS(2333), + [anon_sym_as] = ACTIONS(2333), + [anon_sym_async] = ACTIONS(2333), + [anon_sym_await] = 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_where] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [sym_mutable_specifier] = ACTIONS(2333), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2333), + [sym_super] = ACTIONS(2333), + [sym_crate] = ACTIONS(2333), + [sym_metavariable] = ACTIONS(2335), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), + [sym_block_comment] = ACTIONS(3), + }, + [559] = { + [sym_token_tree] = STATE(516), + [sym_token_repetition] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2251), + [anon_sym_i8] = ACTIONS(2251), + [anon_sym_u16] = ACTIONS(2251), + [anon_sym_i16] = ACTIONS(2251), + [anon_sym_u32] = ACTIONS(2251), + [anon_sym_i32] = ACTIONS(2251), + [anon_sym_u64] = ACTIONS(2251), + [anon_sym_i64] = ACTIONS(2251), + [anon_sym_u128] = ACTIONS(2251), + [anon_sym_i128] = ACTIONS(2251), + [anon_sym_isize] = ACTIONS(2251), + [anon_sym_usize] = ACTIONS(2251), + [anon_sym_f32] = ACTIONS(2251), + [anon_sym_f64] = ACTIONS(2251), + [anon_sym_bool] = ACTIONS(2251), + [anon_sym_str] = ACTIONS(2251), + [anon_sym_char] = ACTIONS(2251), + [aux_sym__non_special_token_token1] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_impl] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_mod] = ACTIONS(2251), + [anon_sym_pub] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2251), + [anon_sym_trait] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_union] = ACTIONS(2251), + [anon_sym_unsafe] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_where] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [sym_mutable_specifier] = ACTIONS(2251), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_crate] = ACTIONS(2251), + [sym_metavariable] = ACTIONS(2255), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), + [sym_block_comment] = ACTIONS(3), + }, + [560] = { + [sym_delim_token_tree] = STATE(552), + [sym__delim_tokens] = STATE(552), + [sym__non_delim_token] = STATE(552), + [sym__literal] = STATE(552), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(552), + [sym_identifier] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2339), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2337), + [anon_sym_SQUOTE] = ACTIONS(2337), + [anon_sym_as] = ACTIONS(2337), + [anon_sym_async] = ACTIONS(2337), + [anon_sym_await] = 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_where] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [sym_mutable_specifier] = ACTIONS(2337), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2337), + [sym_super] = ACTIONS(2337), + [sym_crate] = ACTIONS(2337), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_block_comment] = ACTIONS(3), + }, + [561] = { + [sym_token_tree] = STATE(516), + [sym_token_repetition] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2251), + [anon_sym_i8] = ACTIONS(2251), + [anon_sym_u16] = ACTIONS(2251), + [anon_sym_i16] = ACTIONS(2251), + [anon_sym_u32] = ACTIONS(2251), + [anon_sym_i32] = ACTIONS(2251), + [anon_sym_u64] = ACTIONS(2251), + [anon_sym_i64] = ACTIONS(2251), + [anon_sym_u128] = ACTIONS(2251), + [anon_sym_i128] = ACTIONS(2251), + [anon_sym_isize] = ACTIONS(2251), + [anon_sym_usize] = ACTIONS(2251), + [anon_sym_f32] = ACTIONS(2251), + [anon_sym_f64] = ACTIONS(2251), + [anon_sym_bool] = ACTIONS(2251), + [anon_sym_str] = ACTIONS(2251), + [anon_sym_char] = ACTIONS(2251), + [aux_sym__non_special_token_token1] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_impl] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_mod] = ACTIONS(2251), + [anon_sym_pub] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2251), + [anon_sym_trait] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_union] = ACTIONS(2251), + [anon_sym_unsafe] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_where] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [sym_mutable_specifier] = ACTIONS(2251), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_crate] = ACTIONS(2251), + [sym_metavariable] = ACTIONS(2255), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), + [sym_block_comment] = ACTIONS(3), + }, + [562] = { + [sym_delim_token_tree] = STATE(553), + [sym__delim_tokens] = STATE(553), + [sym__non_delim_token] = STATE(553), + [sym__literal] = STATE(553), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(553), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_RPAREN] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2343), + [anon_sym_u8] = ACTIONS(2341), + [anon_sym_i8] = ACTIONS(2341), + [anon_sym_u16] = ACTIONS(2341), + [anon_sym_i16] = ACTIONS(2341), + [anon_sym_u32] = ACTIONS(2341), + [anon_sym_i32] = ACTIONS(2341), + [anon_sym_u64] = ACTIONS(2341), + [anon_sym_i64] = ACTIONS(2341), + [anon_sym_u128] = ACTIONS(2341), + [anon_sym_i128] = ACTIONS(2341), + [anon_sym_isize] = ACTIONS(2341), + [anon_sym_usize] = ACTIONS(2341), + [anon_sym_f32] = ACTIONS(2341), + [anon_sym_f64] = ACTIONS(2341), + [anon_sym_bool] = ACTIONS(2341), + [anon_sym_str] = ACTIONS(2341), + [anon_sym_char] = ACTIONS(2341), + [aux_sym__non_special_token_token1] = ACTIONS(2341), + [anon_sym_SQUOTE] = ACTIONS(2341), + [anon_sym_as] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_await] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_default] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_fn] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_impl] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2341), + [anon_sym_loop] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_mod] = ACTIONS(2341), + [anon_sym_pub] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_trait] = ACTIONS(2341), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [anon_sym_unsafe] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_where] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [sym_mutable_specifier] = ACTIONS(2341), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2341), + [sym_super] = ACTIONS(2341), + [sym_crate] = ACTIONS(2341), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_block_comment] = ACTIONS(3), + }, + [563] = { + [sym_token_tree] = STATE(555), + [sym_token_repetition] = STATE(555), + [sym__literal] = STATE(555), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_repeat1] = STATE(555), + [sym_identifier] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_RBRACK] = ACTIONS(2285), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2345), + [anon_sym_i8] = ACTIONS(2345), + [anon_sym_u16] = ACTIONS(2345), + [anon_sym_i16] = ACTIONS(2345), + [anon_sym_u32] = ACTIONS(2345), + [anon_sym_i32] = ACTIONS(2345), + [anon_sym_u64] = ACTIONS(2345), + [anon_sym_i64] = ACTIONS(2345), + [anon_sym_u128] = ACTIONS(2345), + [anon_sym_i128] = ACTIONS(2345), + [anon_sym_isize] = ACTIONS(2345), + [anon_sym_usize] = ACTIONS(2345), + [anon_sym_f32] = ACTIONS(2345), + [anon_sym_f64] = ACTIONS(2345), + [anon_sym_bool] = ACTIONS(2345), + [anon_sym_str] = ACTIONS(2345), + [anon_sym_char] = ACTIONS(2345), + [aux_sym__non_special_token_token1] = ACTIONS(2345), + [anon_sym_SQUOTE] = ACTIONS(2345), + [anon_sym_as] = ACTIONS(2345), + [anon_sym_async] = ACTIONS(2345), + [anon_sym_await] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_fn] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_impl] = ACTIONS(2345), + [anon_sym_let] = ACTIONS(2345), + [anon_sym_loop] = ACTIONS(2345), + [anon_sym_match] = ACTIONS(2345), + [anon_sym_mod] = ACTIONS(2345), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_trait] = ACTIONS(2345), + [anon_sym_type] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_unsafe] = ACTIONS(2345), + [anon_sym_use] = ACTIONS(2345), + [anon_sym_where] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [sym_mutable_specifier] = ACTIONS(2345), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2345), + [sym_super] = ACTIONS(2345), + [sym_crate] = ACTIONS(2345), + [sym_metavariable] = ACTIONS(2347), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), + [sym_block_comment] = ACTIONS(3), + }, + [564] = { + [sym_token_tree] = STATE(549), + [sym_token_repetition] = STATE(549), + [sym__literal] = STATE(549), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_token_tree_repeat1] = STATE(549), + [sym_identifier] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2243), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2349), + [anon_sym_SQUOTE] = ACTIONS(2349), + [anon_sym_as] = ACTIONS(2349), + [anon_sym_async] = ACTIONS(2349), + [anon_sym_await] = 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_where] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [sym_mutable_specifier] = ACTIONS(2349), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2349), + [sym_super] = ACTIONS(2349), + [sym_crate] = ACTIONS(2349), + [sym_metavariable] = ACTIONS(2351), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), + [sym_block_comment] = ACTIONS(3), + }, + [565] = { + [sym_delim_token_tree] = STATE(548), + [sym__delim_tokens] = STATE(548), + [sym__non_delim_token] = STATE(548), + [sym__literal] = STATE(548), + [sym_string_literal] = STATE(619), + [sym_boolean_literal] = STATE(619), + [aux_sym_delim_token_tree_repeat1] = STATE(548), + [sym_identifier] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RBRACK] = ACTIONS(2273), + [anon_sym_DOLLAR] = ACTIONS(2355), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2353), + [anon_sym_SQUOTE] = ACTIONS(2353), + [anon_sym_as] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_await] = 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_where] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [sym_mutable_specifier] = ACTIONS(2353), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2353), + [sym_super] = ACTIONS(2353), + [sym_crate] = ACTIONS(2353), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_block_comment] = ACTIONS(3), + }, + [566] = { + [sym_attribute_item] = STATE(649), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_match_pattern] = STATE(2580), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2021), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_enum_variant_list_repeat1] = STATE(649), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(924), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [560] = { - [sym_attribute_item] = STATE(640), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_pattern] = STATE(2569), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(640), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [567] = { + [sym_attribute_item] = STATE(649), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_match_pattern] = STATE(2584), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2021), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [aux_sym_enum_variant_list_repeat1] = STATE(649), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -66642,43 +69915,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [561] = { - [sym_attribute_item] = STATE(569), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(672), - [sym__type] = STATE(1930), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(569), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [568] = { + [sym_attribute_item] = STATE(581), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym_visibility_modifier] = STATE(688), + [sym__type] = STATE(1819), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_enum_variant_list_repeat1] = STATE(581), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2339), + [anon_sym_RPAREN] = ACTIONS(2359), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(908), @@ -66698,18 +69971,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), + [anon_sym_pub] = ACTIONS(2363), [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2365), [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(2367), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(916), @@ -66718,39 +69992,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(922), [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), + [sym_crate] = ACTIONS(2369), [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [562] = { - [sym_attribute_item] = STATE(569), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(672), - [sym__type] = STATE(1930), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(569), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [569] = { + [sym_attribute_item] = STATE(576), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym_visibility_modifier] = STATE(765), + [sym__type] = STATE(1993), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_enum_variant_list_repeat1] = STATE(576), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2341), + [anon_sym_RPAREN] = ACTIONS(2371), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(908), @@ -66770,17 +70044,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), + [anon_sym_pub] = ACTIONS(2363), [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2365), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -66790,39 +70064,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(922), [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), + [sym_crate] = ACTIONS(2369), [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [563] = { - [sym_attribute_item] = STATE(569), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(672), - [sym__type] = STATE(1930), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(569), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [570] = { + [sym_attribute_item] = STATE(576), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym_visibility_modifier] = STATE(765), + [sym__type] = STATE(1993), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_enum_variant_list_repeat1] = STATE(576), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2343), + [anon_sym_RPAREN] = ACTIONS(2373), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(908), @@ -66842,17 +70116,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), + [anon_sym_pub] = ACTIONS(2363), [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2365), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -66862,39 +70136,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(922), [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), + [sym_crate] = ACTIONS(2369), [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [564] = { - [sym_attribute_item] = STATE(569), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(672), - [sym__type] = STATE(1930), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(569), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [571] = { + [sym_attribute_item] = STATE(576), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym_visibility_modifier] = STATE(765), + [sym__type] = STATE(1993), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_enum_variant_list_repeat1] = STATE(576), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2345), + [anon_sym_RPAREN] = ACTIONS(2375), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(908), @@ -66914,17 +70188,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), + [anon_sym_pub] = ACTIONS(2363), [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2365), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -66934,39 +70208,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(922), [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), + [sym_crate] = ACTIONS(2369), [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [565] = { - [sym_attribute_item] = STATE(569), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(672), - [sym__type] = STATE(1930), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(569), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [572] = { + [sym_attribute_item] = STATE(576), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym_visibility_modifier] = STATE(765), + [sym__type] = STATE(1993), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_enum_variant_list_repeat1] = STATE(576), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_RPAREN] = ACTIONS(2377), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(908), @@ -66986,17 +70260,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), + [anon_sym_pub] = ACTIONS(2363), [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2365), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -67006,39 +70280,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(922), [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), + [sym_crate] = ACTIONS(2369), [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [566] = { - [sym_attribute_item] = STATE(569), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(672), - [sym__type] = STATE(1930), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(569), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [573] = { + [sym_attribute_item] = STATE(576), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym_visibility_modifier] = STATE(765), + [sym__type] = STATE(1993), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_enum_variant_list_repeat1] = STATE(576), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_RPAREN] = ACTIONS(2379), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(908), @@ -67058,17 +70332,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), + [anon_sym_pub] = ACTIONS(2363), [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2365), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -67078,180 +70352,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(922), [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), + [sym_crate] = ACTIONS(2369), [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [567] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1814), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [568] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1827), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_COMMA] = ACTIONS(812), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [569] = { - [sym_attribute_item] = STATE(1098), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(700), - [sym__type] = STATE(2032), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(1098), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [574] = { + [sym_attribute_item] = STATE(576), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym_visibility_modifier] = STATE(765), + [sym__type] = STATE(1993), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_enum_variant_list_repeat1] = STATE(576), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2381), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(908), @@ -67271,17 +70404,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), + [anon_sym_pub] = ACTIONS(2363), [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2365), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -67291,108 +70424,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(922), [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), + [sym_crate] = ACTIONS(2369), [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [570] = { - [sym_identifier] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_RPAREN] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_RBRACK] = ACTIONS(2355), - [anon_sym_COLON] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2353), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [anon_sym_as] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(2353), - [anon_sym_await] = 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_where] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [sym_mutable_specifier] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2355), - [aux_sym_string_literal_token1] = ACTIONS(2355), - [sym_char_literal] = ACTIONS(2355), - [anon_sym_true] = ACTIONS(2353), - [anon_sym_false] = ACTIONS(2353), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2353), - [sym_super] = ACTIONS(2353), - [sym_crate] = ACTIONS(2353), - [sym_metavariable] = ACTIONS(2355), - [sym_raw_string_literal] = ACTIONS(2355), - [sym_float_literal] = ACTIONS(2355), + [575] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1853), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_COMMA] = ACTIONS(2385), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [571] = { - [sym_attribute_item] = STATE(569), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(672), - [sym__type] = STATE(1930), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(569), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [576] = { + [sym_attribute_item] = STATE(1175), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym_visibility_modifier] = STATE(758), + [sym__type] = STATE(1923), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_enum_variant_list_repeat1] = STATE(1175), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), @@ -67413,17 +70546,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), + [anon_sym_pub] = ACTIONS(2363), [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2365), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -67433,108 +70566,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(922), [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), + [sym_crate] = ACTIONS(2369), [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [572] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1838), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_COMMA] = ACTIONS(2361), + [577] = { + [sym_parameter] = STATE(2031), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1852), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(2389), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(2391), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(2393), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [573] = { - [sym_attribute_item] = STATE(1098), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(676), - [sym__type] = STATE(1888), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(1098), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [578] = { + [sym_attribute_item] = STATE(576), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym_visibility_modifier] = STATE(765), + [sym__type] = STATE(1993), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_enum_variant_list_repeat1] = STATE(576), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), @@ -67555,17 +70688,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), + [anon_sym_pub] = ACTIONS(2363), [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2365), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -67575,134 +70708,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(922), [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), + [sym_crate] = ACTIONS(2369), [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [574] = { - [sym_parameter] = STATE(1951), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1848), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(2365), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2369), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [575] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1853), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_RBRACK] = ACTIONS(2371), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [579] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1851), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_COMMA] = ACTIONS(812), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -67712,277 +70775,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [576] = { - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_RPAREN] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_RBRACK] = ACTIONS(2375), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_u8] = ACTIONS(2373), - [anon_sym_i8] = ACTIONS(2373), - [anon_sym_u16] = ACTIONS(2373), - [anon_sym_i16] = ACTIONS(2373), - [anon_sym_u32] = ACTIONS(2373), - [anon_sym_i32] = ACTIONS(2373), - [anon_sym_u64] = ACTIONS(2373), - [anon_sym_i64] = ACTIONS(2373), - [anon_sym_u128] = ACTIONS(2373), - [anon_sym_i128] = ACTIONS(2373), - [anon_sym_isize] = ACTIONS(2373), - [anon_sym_usize] = ACTIONS(2373), - [anon_sym_f32] = ACTIONS(2373), - [anon_sym_f64] = ACTIONS(2373), - [anon_sym_bool] = ACTIONS(2373), - [anon_sym_str] = ACTIONS(2373), - [anon_sym_char] = ACTIONS(2373), - [aux_sym__non_special_token_token1] = ACTIONS(2373), - [anon_sym_SQUOTE] = ACTIONS(2373), - [anon_sym_as] = ACTIONS(2373), - [anon_sym_async] = ACTIONS(2373), - [anon_sym_await] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_default] = ACTIONS(2373), - [anon_sym_enum] = ACTIONS(2373), - [anon_sym_fn] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_impl] = ACTIONS(2373), - [anon_sym_let] = ACTIONS(2373), - [anon_sym_loop] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_mod] = ACTIONS(2373), - [anon_sym_pub] = ACTIONS(2373), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_static] = ACTIONS(2373), - [anon_sym_struct] = ACTIONS(2373), - [anon_sym_trait] = ACTIONS(2373), - [anon_sym_type] = ACTIONS(2373), - [anon_sym_union] = ACTIONS(2373), - [anon_sym_unsafe] = ACTIONS(2373), - [anon_sym_use] = ACTIONS(2373), - [anon_sym_where] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [sym_mutable_specifier] = ACTIONS(2373), - [sym_integer_literal] = ACTIONS(2375), - [aux_sym_string_literal_token1] = ACTIONS(2375), - [sym_char_literal] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(2373), - [anon_sym_false] = ACTIONS(2373), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2373), - [sym_super] = ACTIONS(2373), - [sym_crate] = ACTIONS(2373), - [sym_metavariable] = ACTIONS(2375), - [sym_raw_string_literal] = ACTIONS(2375), - [sym_float_literal] = ACTIONS(2375), - [sym_block_comment] = ACTIONS(3), - }, - [577] = { - [sym_identifier] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_RPAREN] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2379), - [anon_sym_LBRACK] = ACTIONS(2379), - [anon_sym_RBRACK] = ACTIONS(2379), - [anon_sym_DOLLAR] = ACTIONS(2377), - [anon_sym_u8] = ACTIONS(2377), - [anon_sym_i8] = ACTIONS(2377), - [anon_sym_u16] = ACTIONS(2377), - [anon_sym_i16] = ACTIONS(2377), - [anon_sym_u32] = ACTIONS(2377), - [anon_sym_i32] = ACTIONS(2377), - [anon_sym_u64] = ACTIONS(2377), - [anon_sym_i64] = ACTIONS(2377), - [anon_sym_u128] = ACTIONS(2377), - [anon_sym_i128] = ACTIONS(2377), - [anon_sym_isize] = ACTIONS(2377), - [anon_sym_usize] = ACTIONS(2377), - [anon_sym_f32] = ACTIONS(2377), - [anon_sym_f64] = ACTIONS(2377), - [anon_sym_bool] = ACTIONS(2377), - [anon_sym_str] = ACTIONS(2377), - [anon_sym_char] = ACTIONS(2377), - [aux_sym__non_special_token_token1] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2377), - [anon_sym_as] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2377), - [anon_sym_await] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_const] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_default] = ACTIONS(2377), - [anon_sym_enum] = ACTIONS(2377), - [anon_sym_fn] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_impl] = ACTIONS(2377), - [anon_sym_let] = ACTIONS(2377), - [anon_sym_loop] = ACTIONS(2377), - [anon_sym_match] = ACTIONS(2377), - [anon_sym_mod] = ACTIONS(2377), - [anon_sym_pub] = ACTIONS(2377), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_static] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(2377), - [anon_sym_trait] = ACTIONS(2377), - [anon_sym_type] = ACTIONS(2377), - [anon_sym_union] = ACTIONS(2377), - [anon_sym_unsafe] = ACTIONS(2377), - [anon_sym_use] = ACTIONS(2377), - [anon_sym_where] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [sym_mutable_specifier] = ACTIONS(2377), - [sym_integer_literal] = ACTIONS(2379), - [aux_sym_string_literal_token1] = ACTIONS(2379), - [sym_char_literal] = ACTIONS(2379), - [anon_sym_true] = ACTIONS(2377), - [anon_sym_false] = ACTIONS(2377), + [580] = { + [sym_identifier] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_RPAREN] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_RBRACK] = ACTIONS(2399), + [anon_sym_COLON] = ACTIONS(2401), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_u8] = ACTIONS(2397), + [anon_sym_i8] = ACTIONS(2397), + [anon_sym_u16] = ACTIONS(2397), + [anon_sym_i16] = ACTIONS(2397), + [anon_sym_u32] = ACTIONS(2397), + [anon_sym_i32] = ACTIONS(2397), + [anon_sym_u64] = ACTIONS(2397), + [anon_sym_i64] = ACTIONS(2397), + [anon_sym_u128] = ACTIONS(2397), + [anon_sym_i128] = ACTIONS(2397), + [anon_sym_isize] = ACTIONS(2397), + [anon_sym_usize] = ACTIONS(2397), + [anon_sym_f32] = ACTIONS(2397), + [anon_sym_f64] = ACTIONS(2397), + [anon_sym_bool] = ACTIONS(2397), + [anon_sym_str] = ACTIONS(2397), + [anon_sym_char] = ACTIONS(2397), + [aux_sym__non_special_token_token1] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_await] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_fn] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_impl] = ACTIONS(2397), + [anon_sym_let] = ACTIONS(2397), + [anon_sym_loop] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_mod] = ACTIONS(2397), + [anon_sym_pub] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_trait] = ACTIONS(2397), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_unsafe] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_where] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [sym_mutable_specifier] = ACTIONS(2397), + [sym_integer_literal] = ACTIONS(2399), + [aux_sym_string_literal_token1] = ACTIONS(2399), + [sym_char_literal] = ACTIONS(2399), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2377), - [sym_super] = ACTIONS(2377), - [sym_crate] = ACTIONS(2377), - [sym_metavariable] = ACTIONS(2379), - [sym_raw_string_literal] = ACTIONS(2379), - [sym_float_literal] = ACTIONS(2379), + [sym_self] = ACTIONS(2397), + [sym_super] = ACTIONS(2397), + [sym_crate] = ACTIONS(2397), + [sym_metavariable] = ACTIONS(2399), + [sym_raw_string_literal] = ACTIONS(2399), + [sym_float_literal] = ACTIONS(2399), [sym_block_comment] = ACTIONS(3), }, - [578] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1853), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [581] = { + [sym_attribute_item] = STATE(1175), + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(1908), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_enum_variant_list_repeat1] = STATE(1175), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2365), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(2369), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [579] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1853), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [582] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1914), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_RBRACK] = ACTIONS(832), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_COMMA] = ACTIONS(840), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -67992,277 +70988,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [580] = { - [sym_identifier] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_RBRACK] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_u8] = ACTIONS(2385), - [anon_sym_i8] = ACTIONS(2385), - [anon_sym_u16] = ACTIONS(2385), - [anon_sym_i16] = ACTIONS(2385), - [anon_sym_u32] = ACTIONS(2385), - [anon_sym_i32] = ACTIONS(2385), - [anon_sym_u64] = ACTIONS(2385), - [anon_sym_i64] = ACTIONS(2385), - [anon_sym_u128] = ACTIONS(2385), - [anon_sym_i128] = ACTIONS(2385), - [anon_sym_isize] = ACTIONS(2385), - [anon_sym_usize] = ACTIONS(2385), - [anon_sym_f32] = ACTIONS(2385), - [anon_sym_f64] = ACTIONS(2385), - [anon_sym_bool] = ACTIONS(2385), - [anon_sym_str] = ACTIONS(2385), - [anon_sym_char] = ACTIONS(2385), - [aux_sym__non_special_token_token1] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2385), - [anon_sym_as] = ACTIONS(2385), - [anon_sym_async] = ACTIONS(2385), - [anon_sym_await] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_impl] = ACTIONS(2385), - [anon_sym_let] = ACTIONS(2385), - [anon_sym_loop] = ACTIONS(2385), - [anon_sym_match] = ACTIONS(2385), - [anon_sym_mod] = ACTIONS(2385), - [anon_sym_pub] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2385), - [anon_sym_trait] = ACTIONS(2385), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_unsafe] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_where] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [sym_mutable_specifier] = ACTIONS(2385), - [sym_integer_literal] = ACTIONS(2387), - [aux_sym_string_literal_token1] = ACTIONS(2387), - [sym_char_literal] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2385), - [sym_super] = ACTIONS(2385), - [sym_crate] = ACTIONS(2385), - [sym_metavariable] = ACTIONS(2387), - [sym_raw_string_literal] = ACTIONS(2387), - [sym_float_literal] = ACTIONS(2387), - [sym_block_comment] = ACTIONS(3), - }, - [581] = { - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_RPAREN] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_RBRACK] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2389), - [anon_sym_u8] = ACTIONS(2389), - [anon_sym_i8] = ACTIONS(2389), - [anon_sym_u16] = ACTIONS(2389), - [anon_sym_i16] = ACTIONS(2389), - [anon_sym_u32] = ACTIONS(2389), - [anon_sym_i32] = ACTIONS(2389), - [anon_sym_u64] = ACTIONS(2389), - [anon_sym_i64] = ACTIONS(2389), - [anon_sym_u128] = ACTIONS(2389), - [anon_sym_i128] = ACTIONS(2389), - [anon_sym_isize] = ACTIONS(2389), - [anon_sym_usize] = ACTIONS(2389), - [anon_sym_f32] = ACTIONS(2389), - [anon_sym_f64] = ACTIONS(2389), - [anon_sym_bool] = ACTIONS(2389), - [anon_sym_str] = ACTIONS(2389), - [anon_sym_char] = ACTIONS(2389), - [aux_sym__non_special_token_token1] = ACTIONS(2389), - [anon_sym_SQUOTE] = ACTIONS(2389), - [anon_sym_as] = ACTIONS(2389), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_default] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [anon_sym_fn] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_impl] = ACTIONS(2389), - [anon_sym_let] = ACTIONS(2389), - [anon_sym_loop] = ACTIONS(2389), - [anon_sym_match] = ACTIONS(2389), - [anon_sym_mod] = ACTIONS(2389), - [anon_sym_pub] = ACTIONS(2389), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_static] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(2389), - [anon_sym_trait] = ACTIONS(2389), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_union] = ACTIONS(2389), - [anon_sym_unsafe] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_where] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [sym_mutable_specifier] = ACTIONS(2389), - [sym_integer_literal] = ACTIONS(2391), - [aux_sym_string_literal_token1] = ACTIONS(2391), - [sym_char_literal] = ACTIONS(2391), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2389), - [sym_super] = ACTIONS(2389), - [sym_crate] = ACTIONS(2389), - [sym_metavariable] = ACTIONS(2391), - [sym_raw_string_literal] = ACTIONS(2391), - [sym_float_literal] = ACTIONS(2391), - [sym_block_comment] = ACTIONS(3), - }, - [582] = { - [sym_identifier] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_RPAREN] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_RBRACK] = ACTIONS(2395), - [anon_sym_DOLLAR] = ACTIONS(2393), - [anon_sym_u8] = ACTIONS(2393), - [anon_sym_i8] = ACTIONS(2393), - [anon_sym_u16] = ACTIONS(2393), - [anon_sym_i16] = ACTIONS(2393), - [anon_sym_u32] = ACTIONS(2393), - [anon_sym_i32] = ACTIONS(2393), - [anon_sym_u64] = ACTIONS(2393), - [anon_sym_i64] = ACTIONS(2393), - [anon_sym_u128] = ACTIONS(2393), - [anon_sym_i128] = ACTIONS(2393), - [anon_sym_isize] = ACTIONS(2393), - [anon_sym_usize] = ACTIONS(2393), - [anon_sym_f32] = ACTIONS(2393), - [anon_sym_f64] = ACTIONS(2393), - [anon_sym_bool] = ACTIONS(2393), - [anon_sym_str] = ACTIONS(2393), - [anon_sym_char] = ACTIONS(2393), - [aux_sym__non_special_token_token1] = ACTIONS(2393), - [anon_sym_SQUOTE] = ACTIONS(2393), - [anon_sym_as] = ACTIONS(2393), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_await] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_default] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_fn] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_impl] = ACTIONS(2393), - [anon_sym_let] = ACTIONS(2393), - [anon_sym_loop] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_mod] = ACTIONS(2393), - [anon_sym_pub] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_trait] = ACTIONS(2393), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_union] = ACTIONS(2393), - [anon_sym_unsafe] = ACTIONS(2393), - [anon_sym_use] = ACTIONS(2393), - [anon_sym_where] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [sym_mutable_specifier] = ACTIONS(2393), - [sym_integer_literal] = ACTIONS(2395), - [aux_sym_string_literal_token1] = ACTIONS(2395), - [sym_char_literal] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2393), - [sym_super] = ACTIONS(2393), - [sym_crate] = ACTIONS(2393), - [sym_metavariable] = ACTIONS(2395), - [sym_raw_string_literal] = ACTIONS(2395), - [sym_float_literal] = ACTIONS(2395), - [sym_block_comment] = ACTIONS(3), - }, [583] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1853), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1894), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_RBRACK] = ACTIONS(2403), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -68272,207 +71058,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [584] = { - [sym_parameter] = STATE(2315), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2086), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(2365), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2369), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_RPAREN] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_RBRACK] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_as] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_await] = 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_where] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [sym_mutable_specifier] = ACTIONS(2405), + [sym_integer_literal] = ACTIONS(2407), + [aux_sym_string_literal_token1] = ACTIONS(2407), + [sym_char_literal] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2405), + [sym_super] = ACTIONS(2405), + [sym_crate] = ACTIONS(2405), + [sym_metavariable] = ACTIONS(2407), + [sym_raw_string_literal] = ACTIONS(2407), + [sym_float_literal] = ACTIONS(2407), [sym_block_comment] = ACTIONS(3), }, [585] = { - [sym_identifier] = ACTIONS(2399), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_RPAREN] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2401), - [anon_sym_RBRACE] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(2401), - [anon_sym_RBRACK] = ACTIONS(2401), - [anon_sym_DOLLAR] = ACTIONS(2399), - [anon_sym_u8] = ACTIONS(2399), - [anon_sym_i8] = ACTIONS(2399), - [anon_sym_u16] = ACTIONS(2399), - [anon_sym_i16] = ACTIONS(2399), - [anon_sym_u32] = ACTIONS(2399), - [anon_sym_i32] = ACTIONS(2399), - [anon_sym_u64] = ACTIONS(2399), - [anon_sym_i64] = ACTIONS(2399), - [anon_sym_u128] = ACTIONS(2399), - [anon_sym_i128] = ACTIONS(2399), - [anon_sym_isize] = ACTIONS(2399), - [anon_sym_usize] = ACTIONS(2399), - [anon_sym_f32] = ACTIONS(2399), - [anon_sym_f64] = ACTIONS(2399), - [anon_sym_bool] = ACTIONS(2399), - [anon_sym_str] = ACTIONS(2399), - [anon_sym_char] = ACTIONS(2399), - [aux_sym__non_special_token_token1] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2399), - [anon_sym_as] = ACTIONS(2399), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_await] = ACTIONS(2399), - [anon_sym_break] = ACTIONS(2399), - [anon_sym_const] = ACTIONS(2399), - [anon_sym_continue] = ACTIONS(2399), - [anon_sym_default] = ACTIONS(2399), - [anon_sym_enum] = ACTIONS(2399), - [anon_sym_fn] = ACTIONS(2399), - [anon_sym_for] = ACTIONS(2399), - [anon_sym_if] = ACTIONS(2399), - [anon_sym_impl] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_loop] = ACTIONS(2399), - [anon_sym_match] = ACTIONS(2399), - [anon_sym_mod] = ACTIONS(2399), - [anon_sym_pub] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2399), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_struct] = ACTIONS(2399), - [anon_sym_trait] = ACTIONS(2399), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_union] = ACTIONS(2399), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_use] = ACTIONS(2399), - [anon_sym_where] = ACTIONS(2399), - [anon_sym_while] = ACTIONS(2399), - [sym_mutable_specifier] = ACTIONS(2399), - [sym_integer_literal] = ACTIONS(2401), - [aux_sym_string_literal_token1] = ACTIONS(2401), - [sym_char_literal] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(2399), - [anon_sym_false] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_RBRACK] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2409), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_as] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_await] = 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_where] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [sym_mutable_specifier] = ACTIONS(2409), + [sym_integer_literal] = ACTIONS(2411), + [aux_sym_string_literal_token1] = ACTIONS(2411), + [sym_char_literal] = ACTIONS(2411), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2399), - [sym_super] = ACTIONS(2399), - [sym_crate] = ACTIONS(2399), - [sym_metavariable] = ACTIONS(2401), - [sym_raw_string_literal] = ACTIONS(2401), - [sym_float_literal] = ACTIONS(2401), + [sym_self] = ACTIONS(2409), + [sym_super] = ACTIONS(2409), + [sym_crate] = ACTIONS(2409), + [sym_metavariable] = ACTIONS(2411), + [sym_raw_string_literal] = ACTIONS(2411), + [sym_float_literal] = ACTIONS(2411), [sym_block_comment] = ACTIONS(3), }, [586] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1853), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_RBRACK] = ACTIONS(2403), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [sym_identifier] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_RBRACK] = ACTIONS(2415), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_u8] = ACTIONS(2413), + [anon_sym_i8] = ACTIONS(2413), + [anon_sym_u16] = ACTIONS(2413), + [anon_sym_i16] = ACTIONS(2413), + [anon_sym_u32] = ACTIONS(2413), + [anon_sym_i32] = ACTIONS(2413), + [anon_sym_u64] = ACTIONS(2413), + [anon_sym_i64] = ACTIONS(2413), + [anon_sym_u128] = ACTIONS(2413), + [anon_sym_i128] = ACTIONS(2413), + [anon_sym_isize] = ACTIONS(2413), + [anon_sym_usize] = ACTIONS(2413), + [anon_sym_f32] = ACTIONS(2413), + [anon_sym_f64] = ACTIONS(2413), + [anon_sym_bool] = ACTIONS(2413), + [anon_sym_str] = ACTIONS(2413), + [anon_sym_char] = ACTIONS(2413), + [aux_sym__non_special_token_token1] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_await] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_fn] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_impl] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_mod] = ACTIONS(2413), + [anon_sym_pub] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_struct] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_union] = ACTIONS(2413), + [anon_sym_unsafe] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_where] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [sym_mutable_specifier] = ACTIONS(2413), + [sym_integer_literal] = ACTIONS(2415), + [aux_sym_string_literal_token1] = ACTIONS(2415), + [sym_char_literal] = ACTIONS(2415), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2413), + [sym_super] = ACTIONS(2413), + [sym_crate] = ACTIONS(2413), + [sym_metavariable] = ACTIONS(2415), + [sym_raw_string_literal] = ACTIONS(2415), + [sym_float_literal] = ACTIONS(2415), + [sym_block_comment] = ACTIONS(3), + }, + [587] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1894), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -68482,67 +71338,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [587] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1853), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [588] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1894), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_RBRACK] = ACTIONS(2419), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -68552,225 +71408,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [588] = { - [sym_identifier] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_RPAREN] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2409), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_RBRACK] = ACTIONS(2409), - [anon_sym_DOLLAR] = ACTIONS(2407), - [anon_sym_u8] = ACTIONS(2407), - [anon_sym_i8] = ACTIONS(2407), - [anon_sym_u16] = ACTIONS(2407), - [anon_sym_i16] = ACTIONS(2407), - [anon_sym_u32] = ACTIONS(2407), - [anon_sym_i32] = ACTIONS(2407), - [anon_sym_u64] = ACTIONS(2407), - [anon_sym_i64] = ACTIONS(2407), - [anon_sym_u128] = ACTIONS(2407), - [anon_sym_i128] = ACTIONS(2407), - [anon_sym_isize] = ACTIONS(2407), - [anon_sym_usize] = ACTIONS(2407), - [anon_sym_f32] = ACTIONS(2407), - [anon_sym_f64] = ACTIONS(2407), - [anon_sym_bool] = ACTIONS(2407), - [anon_sym_str] = ACTIONS(2407), - [anon_sym_char] = ACTIONS(2407), - [aux_sym__non_special_token_token1] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_as] = ACTIONS(2407), - [anon_sym_async] = ACTIONS(2407), - [anon_sym_await] = ACTIONS(2407), - [anon_sym_break] = ACTIONS(2407), - [anon_sym_const] = ACTIONS(2407), - [anon_sym_continue] = ACTIONS(2407), - [anon_sym_default] = ACTIONS(2407), - [anon_sym_enum] = ACTIONS(2407), - [anon_sym_fn] = ACTIONS(2407), - [anon_sym_for] = ACTIONS(2407), - [anon_sym_if] = ACTIONS(2407), - [anon_sym_impl] = ACTIONS(2407), - [anon_sym_let] = ACTIONS(2407), - [anon_sym_loop] = ACTIONS(2407), - [anon_sym_match] = ACTIONS(2407), - [anon_sym_mod] = ACTIONS(2407), - [anon_sym_pub] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2407), - [anon_sym_static] = ACTIONS(2407), - [anon_sym_struct] = ACTIONS(2407), - [anon_sym_trait] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2407), - [anon_sym_union] = ACTIONS(2407), - [anon_sym_unsafe] = ACTIONS(2407), - [anon_sym_use] = ACTIONS(2407), - [anon_sym_where] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [sym_mutable_specifier] = ACTIONS(2407), - [sym_integer_literal] = ACTIONS(2409), - [aux_sym_string_literal_token1] = ACTIONS(2409), - [sym_char_literal] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2407), - [anon_sym_false] = ACTIONS(2407), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2407), - [sym_super] = ACTIONS(2407), - [sym_crate] = ACTIONS(2407), - [sym_metavariable] = ACTIONS(2409), - [sym_raw_string_literal] = ACTIONS(2409), - [sym_float_literal] = ACTIONS(2409), - [sym_block_comment] = ACTIONS(3), - }, [589] = { - [sym_identifier] = ACTIONS(2411), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_RPAREN] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_RBRACK] = ACTIONS(2413), - [anon_sym_DOLLAR] = ACTIONS(2411), - [anon_sym_u8] = ACTIONS(2411), - [anon_sym_i8] = ACTIONS(2411), - [anon_sym_u16] = ACTIONS(2411), - [anon_sym_i16] = ACTIONS(2411), - [anon_sym_u32] = ACTIONS(2411), - [anon_sym_i32] = ACTIONS(2411), - [anon_sym_u64] = ACTIONS(2411), - [anon_sym_i64] = ACTIONS(2411), - [anon_sym_u128] = ACTIONS(2411), - [anon_sym_i128] = ACTIONS(2411), - [anon_sym_isize] = ACTIONS(2411), - [anon_sym_usize] = ACTIONS(2411), - [anon_sym_f32] = ACTIONS(2411), - [anon_sym_f64] = ACTIONS(2411), - [anon_sym_bool] = ACTIONS(2411), - [anon_sym_str] = ACTIONS(2411), - [anon_sym_char] = ACTIONS(2411), - [aux_sym__non_special_token_token1] = ACTIONS(2411), - [anon_sym_SQUOTE] = ACTIONS(2411), - [anon_sym_as] = ACTIONS(2411), - [anon_sym_async] = ACTIONS(2411), - [anon_sym_await] = ACTIONS(2411), - [anon_sym_break] = ACTIONS(2411), - [anon_sym_const] = ACTIONS(2411), - [anon_sym_continue] = ACTIONS(2411), - [anon_sym_default] = ACTIONS(2411), - [anon_sym_enum] = ACTIONS(2411), - [anon_sym_fn] = ACTIONS(2411), - [anon_sym_for] = ACTIONS(2411), - [anon_sym_if] = ACTIONS(2411), - [anon_sym_impl] = ACTIONS(2411), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_loop] = ACTIONS(2411), - [anon_sym_match] = ACTIONS(2411), - [anon_sym_mod] = ACTIONS(2411), - [anon_sym_pub] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2411), - [anon_sym_static] = ACTIONS(2411), - [anon_sym_struct] = ACTIONS(2411), - [anon_sym_trait] = ACTIONS(2411), - [anon_sym_type] = ACTIONS(2411), - [anon_sym_union] = ACTIONS(2411), - [anon_sym_unsafe] = ACTIONS(2411), - [anon_sym_use] = ACTIONS(2411), - [anon_sym_where] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [sym_mutable_specifier] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2413), - [aux_sym_string_literal_token1] = ACTIONS(2413), - [sym_char_literal] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2411), - [anon_sym_false] = ACTIONS(2411), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2411), - [sym_super] = ACTIONS(2411), - [sym_crate] = ACTIONS(2411), - [sym_metavariable] = ACTIONS(2413), - [sym_raw_string_literal] = ACTIONS(2413), - [sym_float_literal] = ACTIONS(2413), - [sym_block_comment] = ACTIONS(3), - }, - [590] = { - [sym_function_modifiers] = STATE(2420), - [sym_const_parameter] = STATE(2096), - [sym_constrained_type_parameter] = STATE(1816), - [sym_optional_type_parameter] = STATE(2096), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1988), - [sym_bracketed_type] = STATE(2383), - [sym_qualified_type] = STATE(2348), - [sym_lifetime] = STATE(1702), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(2417), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(2419), - [sym_block_comment] = ACTIONS(3), - }, - [591] = { [sym_identifier] = ACTIONS(2421), [anon_sym_LPAREN] = ACTIONS(2423), [anon_sym_RPAREN] = ACTIONS(2423), @@ -68840,7 +71486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2423), [sym_block_comment] = ACTIONS(3), }, - [592] = { + [590] = { [sym_identifier] = ACTIONS(2425), [anon_sym_LPAREN] = ACTIONS(2427), [anon_sym_RPAREN] = ACTIONS(2427), @@ -68910,7 +71556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2427), [sym_block_comment] = ACTIONS(3), }, - [593] = { + [591] = { [sym_identifier] = ACTIONS(2429), [anon_sym_LPAREN] = ACTIONS(2431), [anon_sym_RPAREN] = ACTIONS(2431), @@ -68980,409 +71626,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2431), [sym_block_comment] = ACTIONS(3), }, - [594] = { - [sym_identifier] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_DOLLAR] = ACTIONS(2433), - [anon_sym_u8] = ACTIONS(2433), - [anon_sym_i8] = ACTIONS(2433), - [anon_sym_u16] = ACTIONS(2433), - [anon_sym_i16] = ACTIONS(2433), - [anon_sym_u32] = ACTIONS(2433), - [anon_sym_i32] = ACTIONS(2433), - [anon_sym_u64] = ACTIONS(2433), - [anon_sym_i64] = ACTIONS(2433), - [anon_sym_u128] = ACTIONS(2433), - [anon_sym_i128] = ACTIONS(2433), - [anon_sym_isize] = ACTIONS(2433), - [anon_sym_usize] = ACTIONS(2433), - [anon_sym_f32] = ACTIONS(2433), - [anon_sym_f64] = ACTIONS(2433), - [anon_sym_bool] = ACTIONS(2433), - [anon_sym_str] = ACTIONS(2433), - [anon_sym_char] = ACTIONS(2433), - [aux_sym__non_special_token_token1] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_await] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_fn] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_impl] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_loop] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_mod] = ACTIONS(2433), - [anon_sym_pub] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_trait] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_unsafe] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_where] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [sym_mutable_specifier] = ACTIONS(2433), - [sym_integer_literal] = ACTIONS(2435), - [aux_sym_string_literal_token1] = ACTIONS(2435), - [sym_char_literal] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2433), - [anon_sym_false] = ACTIONS(2433), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2433), - [sym_super] = ACTIONS(2433), - [sym_crate] = ACTIONS(2433), - [sym_metavariable] = ACTIONS(2435), - [sym_raw_string_literal] = ACTIONS(2435), - [sym_float_literal] = ACTIONS(2435), + [592] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1894), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [595] = { - [sym_identifier] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_RPAREN] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2439), - [anon_sym_RBRACK] = ACTIONS(2439), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(2437), - [anon_sym_i8] = ACTIONS(2437), - [anon_sym_u16] = ACTIONS(2437), - [anon_sym_i16] = ACTIONS(2437), - [anon_sym_u32] = ACTIONS(2437), - [anon_sym_i32] = ACTIONS(2437), - [anon_sym_u64] = ACTIONS(2437), - [anon_sym_i64] = ACTIONS(2437), - [anon_sym_u128] = ACTIONS(2437), - [anon_sym_i128] = ACTIONS(2437), - [anon_sym_isize] = ACTIONS(2437), - [anon_sym_usize] = ACTIONS(2437), - [anon_sym_f32] = ACTIONS(2437), - [anon_sym_f64] = ACTIONS(2437), - [anon_sym_bool] = ACTIONS(2437), - [anon_sym_str] = ACTIONS(2437), - [anon_sym_char] = ACTIONS(2437), - [aux_sym__non_special_token_token1] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_default] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_fn] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_impl] = ACTIONS(2437), - [anon_sym_let] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_mod] = ACTIONS(2437), - [anon_sym_pub] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_trait] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_union] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(2437), - [anon_sym_use] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [sym_mutable_specifier] = ACTIONS(2437), - [sym_integer_literal] = ACTIONS(2439), - [aux_sym_string_literal_token1] = ACTIONS(2439), - [sym_char_literal] = ACTIONS(2439), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2437), - [sym_super] = ACTIONS(2437), - [sym_crate] = ACTIONS(2437), - [sym_metavariable] = ACTIONS(2439), - [sym_raw_string_literal] = ACTIONS(2439), - [sym_float_literal] = ACTIONS(2439), - [sym_block_comment] = ACTIONS(3), - }, - [596] = { - [sym_identifier] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_DOLLAR] = ACTIONS(2441), - [anon_sym_u8] = ACTIONS(2441), - [anon_sym_i8] = ACTIONS(2441), - [anon_sym_u16] = ACTIONS(2441), - [anon_sym_i16] = ACTIONS(2441), - [anon_sym_u32] = ACTIONS(2441), - [anon_sym_i32] = ACTIONS(2441), - [anon_sym_u64] = ACTIONS(2441), - [anon_sym_i64] = ACTIONS(2441), - [anon_sym_u128] = ACTIONS(2441), - [anon_sym_i128] = ACTIONS(2441), - [anon_sym_isize] = ACTIONS(2441), - [anon_sym_usize] = ACTIONS(2441), - [anon_sym_f32] = ACTIONS(2441), - [anon_sym_f64] = ACTIONS(2441), - [anon_sym_bool] = ACTIONS(2441), - [anon_sym_str] = ACTIONS(2441), - [anon_sym_char] = ACTIONS(2441), - [aux_sym__non_special_token_token1] = ACTIONS(2441), - [anon_sym_SQUOTE] = ACTIONS(2441), - [anon_sym_as] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_await] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_const] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_default] = ACTIONS(2441), - [anon_sym_enum] = ACTIONS(2441), - [anon_sym_fn] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_impl] = ACTIONS(2441), - [anon_sym_let] = ACTIONS(2441), - [anon_sym_loop] = ACTIONS(2441), - [anon_sym_match] = ACTIONS(2441), - [anon_sym_mod] = ACTIONS(2441), - [anon_sym_pub] = ACTIONS(2441), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_struct] = ACTIONS(2441), - [anon_sym_trait] = ACTIONS(2441), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_union] = ACTIONS(2441), - [anon_sym_unsafe] = ACTIONS(2441), - [anon_sym_use] = ACTIONS(2441), - [anon_sym_where] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [sym_mutable_specifier] = ACTIONS(2441), - [sym_integer_literal] = ACTIONS(2443), - [aux_sym_string_literal_token1] = ACTIONS(2443), - [sym_char_literal] = ACTIONS(2443), - [anon_sym_true] = ACTIONS(2441), - [anon_sym_false] = ACTIONS(2441), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2441), - [sym_super] = ACTIONS(2441), - [sym_crate] = ACTIONS(2441), - [sym_metavariable] = ACTIONS(2443), - [sym_raw_string_literal] = ACTIONS(2443), - [sym_float_literal] = ACTIONS(2443), - [sym_block_comment] = ACTIONS(3), - }, - [597] = { - [sym_identifier] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_RBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2445), - [anon_sym_u8] = ACTIONS(2445), - [anon_sym_i8] = ACTIONS(2445), - [anon_sym_u16] = ACTIONS(2445), - [anon_sym_i16] = ACTIONS(2445), - [anon_sym_u32] = ACTIONS(2445), - [anon_sym_i32] = ACTIONS(2445), - [anon_sym_u64] = ACTIONS(2445), - [anon_sym_i64] = ACTIONS(2445), - [anon_sym_u128] = ACTIONS(2445), - [anon_sym_i128] = ACTIONS(2445), - [anon_sym_isize] = ACTIONS(2445), - [anon_sym_usize] = ACTIONS(2445), - [anon_sym_f32] = ACTIONS(2445), - [anon_sym_f64] = ACTIONS(2445), - [anon_sym_bool] = ACTIONS(2445), - [anon_sym_str] = ACTIONS(2445), - [anon_sym_char] = ACTIONS(2445), - [aux_sym__non_special_token_token1] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2445), - [anon_sym_as] = ACTIONS(2445), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_await] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_default] = ACTIONS(2445), - [anon_sym_enum] = ACTIONS(2445), - [anon_sym_fn] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_impl] = ACTIONS(2445), - [anon_sym_let] = ACTIONS(2445), - [anon_sym_loop] = ACTIONS(2445), - [anon_sym_match] = ACTIONS(2445), - [anon_sym_mod] = ACTIONS(2445), - [anon_sym_pub] = ACTIONS(2445), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_struct] = ACTIONS(2445), - [anon_sym_trait] = ACTIONS(2445), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_union] = ACTIONS(2445), - [anon_sym_unsafe] = ACTIONS(2445), - [anon_sym_use] = ACTIONS(2445), - [anon_sym_where] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [sym_mutable_specifier] = ACTIONS(2445), - [sym_integer_literal] = ACTIONS(2447), - [aux_sym_string_literal_token1] = ACTIONS(2447), - [sym_char_literal] = ACTIONS(2447), - [anon_sym_true] = ACTIONS(2445), - [anon_sym_false] = ACTIONS(2445), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2445), - [sym_super] = ACTIONS(2445), - [sym_crate] = ACTIONS(2445), - [sym_metavariable] = ACTIONS(2447), - [sym_raw_string_literal] = ACTIONS(2447), - [sym_float_literal] = ACTIONS(2447), - [sym_block_comment] = ACTIONS(3), - }, - [598] = { - [sym_identifier] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_RPAREN] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_RBRACK] = ACTIONS(2451), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_u8] = ACTIONS(2449), - [anon_sym_i8] = ACTIONS(2449), - [anon_sym_u16] = ACTIONS(2449), - [anon_sym_i16] = ACTIONS(2449), - [anon_sym_u32] = ACTIONS(2449), - [anon_sym_i32] = ACTIONS(2449), - [anon_sym_u64] = ACTIONS(2449), - [anon_sym_i64] = ACTIONS(2449), - [anon_sym_u128] = ACTIONS(2449), - [anon_sym_i128] = ACTIONS(2449), - [anon_sym_isize] = ACTIONS(2449), - [anon_sym_usize] = ACTIONS(2449), - [anon_sym_f32] = ACTIONS(2449), - [anon_sym_f64] = ACTIONS(2449), - [anon_sym_bool] = ACTIONS(2449), - [anon_sym_str] = ACTIONS(2449), - [anon_sym_char] = ACTIONS(2449), - [aux_sym__non_special_token_token1] = ACTIONS(2449), - [anon_sym_SQUOTE] = ACTIONS(2449), - [anon_sym_as] = ACTIONS(2449), - [anon_sym_async] = ACTIONS(2449), - [anon_sym_await] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_default] = ACTIONS(2449), - [anon_sym_enum] = ACTIONS(2449), - [anon_sym_fn] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_impl] = ACTIONS(2449), - [anon_sym_let] = ACTIONS(2449), - [anon_sym_loop] = ACTIONS(2449), - [anon_sym_match] = ACTIONS(2449), - [anon_sym_mod] = ACTIONS(2449), - [anon_sym_pub] = ACTIONS(2449), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_static] = ACTIONS(2449), - [anon_sym_struct] = ACTIONS(2449), - [anon_sym_trait] = ACTIONS(2449), - [anon_sym_type] = ACTIONS(2449), - [anon_sym_union] = ACTIONS(2449), - [anon_sym_unsafe] = ACTIONS(2449), - [anon_sym_use] = ACTIONS(2449), - [anon_sym_where] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [sym_mutable_specifier] = ACTIONS(2449), - [sym_integer_literal] = ACTIONS(2451), - [aux_sym_string_literal_token1] = ACTIONS(2451), - [sym_char_literal] = ACTIONS(2451), - [anon_sym_true] = ACTIONS(2449), - [anon_sym_false] = ACTIONS(2449), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2449), - [sym_super] = ACTIONS(2449), - [sym_crate] = ACTIONS(2449), - [sym_metavariable] = ACTIONS(2451), - [sym_raw_string_literal] = ACTIONS(2451), - [sym_float_literal] = ACTIONS(2451), - [sym_block_comment] = ACTIONS(3), - }, - [599] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1502), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [593] = { + [sym_parameter] = STATE(2259), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2103), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(2389), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -69391,182 +71758,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(2393), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [600] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2057), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [594] = { + [sym_identifier] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_RPAREN] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2437), + [anon_sym_RBRACK] = ACTIONS(2437), + [anon_sym_DOLLAR] = ACTIONS(2435), + [anon_sym_u8] = ACTIONS(2435), + [anon_sym_i8] = ACTIONS(2435), + [anon_sym_u16] = ACTIONS(2435), + [anon_sym_i16] = ACTIONS(2435), + [anon_sym_u32] = ACTIONS(2435), + [anon_sym_i32] = ACTIONS(2435), + [anon_sym_u64] = ACTIONS(2435), + [anon_sym_i64] = ACTIONS(2435), + [anon_sym_u128] = ACTIONS(2435), + [anon_sym_i128] = ACTIONS(2435), + [anon_sym_isize] = ACTIONS(2435), + [anon_sym_usize] = ACTIONS(2435), + [anon_sym_f32] = ACTIONS(2435), + [anon_sym_f64] = ACTIONS(2435), + [anon_sym_bool] = ACTIONS(2435), + [anon_sym_str] = ACTIONS(2435), + [anon_sym_char] = ACTIONS(2435), + [aux_sym__non_special_token_token1] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_as] = ACTIONS(2435), + [anon_sym_async] = ACTIONS(2435), + [anon_sym_await] = ACTIONS(2435), + [anon_sym_break] = ACTIONS(2435), + [anon_sym_const] = ACTIONS(2435), + [anon_sym_continue] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(2435), + [anon_sym_enum] = ACTIONS(2435), + [anon_sym_fn] = ACTIONS(2435), + [anon_sym_for] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2435), + [anon_sym_impl] = ACTIONS(2435), + [anon_sym_let] = ACTIONS(2435), + [anon_sym_loop] = ACTIONS(2435), + [anon_sym_match] = ACTIONS(2435), + [anon_sym_mod] = ACTIONS(2435), + [anon_sym_pub] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_static] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(2435), + [anon_sym_trait] = ACTIONS(2435), + [anon_sym_type] = ACTIONS(2435), + [anon_sym_union] = ACTIONS(2435), + [anon_sym_unsafe] = ACTIONS(2435), + [anon_sym_use] = ACTIONS(2435), + [anon_sym_where] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2435), + [sym_mutable_specifier] = ACTIONS(2435), + [sym_integer_literal] = ACTIONS(2437), + [aux_sym_string_literal_token1] = ACTIONS(2437), + [sym_char_literal] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(2435), + [anon_sym_false] = ACTIONS(2435), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2435), + [sym_super] = ACTIONS(2435), + [sym_crate] = ACTIONS(2435), + [sym_metavariable] = ACTIONS(2437), + [sym_raw_string_literal] = ACTIONS(2437), + [sym_float_literal] = ACTIONS(2437), [sym_block_comment] = ACTIONS(3), }, - [601] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2301), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [595] = { + [sym_identifier] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_RPAREN] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_RBRACK] = ACTIONS(2441), + [anon_sym_DOLLAR] = ACTIONS(2439), + [anon_sym_u8] = ACTIONS(2439), + [anon_sym_i8] = ACTIONS(2439), + [anon_sym_u16] = ACTIONS(2439), + [anon_sym_i16] = ACTIONS(2439), + [anon_sym_u32] = ACTIONS(2439), + [anon_sym_i32] = ACTIONS(2439), + [anon_sym_u64] = ACTIONS(2439), + [anon_sym_i64] = ACTIONS(2439), + [anon_sym_u128] = ACTIONS(2439), + [anon_sym_i128] = ACTIONS(2439), + [anon_sym_isize] = ACTIONS(2439), + [anon_sym_usize] = ACTIONS(2439), + [anon_sym_f32] = ACTIONS(2439), + [anon_sym_f64] = ACTIONS(2439), + [anon_sym_bool] = ACTIONS(2439), + [anon_sym_str] = ACTIONS(2439), + [anon_sym_char] = ACTIONS(2439), + [aux_sym__non_special_token_token1] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_as] = ACTIONS(2439), + [anon_sym_async] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(2439), + [anon_sym_break] = ACTIONS(2439), + [anon_sym_const] = ACTIONS(2439), + [anon_sym_continue] = ACTIONS(2439), + [anon_sym_default] = ACTIONS(2439), + [anon_sym_enum] = ACTIONS(2439), + [anon_sym_fn] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_if] = ACTIONS(2439), + [anon_sym_impl] = ACTIONS(2439), + [anon_sym_let] = ACTIONS(2439), + [anon_sym_loop] = ACTIONS(2439), + [anon_sym_match] = ACTIONS(2439), + [anon_sym_mod] = ACTIONS(2439), + [anon_sym_pub] = ACTIONS(2439), + [anon_sym_return] = ACTIONS(2439), + [anon_sym_static] = ACTIONS(2439), + [anon_sym_struct] = ACTIONS(2439), + [anon_sym_trait] = ACTIONS(2439), + [anon_sym_type] = ACTIONS(2439), + [anon_sym_union] = ACTIONS(2439), + [anon_sym_unsafe] = ACTIONS(2439), + [anon_sym_use] = ACTIONS(2439), + [anon_sym_where] = ACTIONS(2439), + [anon_sym_while] = ACTIONS(2439), + [sym_mutable_specifier] = ACTIONS(2439), + [sym_integer_literal] = ACTIONS(2441), + [aux_sym_string_literal_token1] = ACTIONS(2441), + [sym_char_literal] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(2439), + [anon_sym_false] = ACTIONS(2439), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2439), + [sym_super] = ACTIONS(2439), + [sym_crate] = ACTIONS(2439), + [sym_metavariable] = ACTIONS(2441), + [sym_raw_string_literal] = ACTIONS(2441), + [sym_float_literal] = ACTIONS(2441), [sym_block_comment] = ACTIONS(3), }, - [602] = { - [sym_function_modifiers] = STATE(2420), - [sym_higher_ranked_trait_bound] = STATE(1602), - [sym_removed_trait_bound] = STATE(1602), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1629), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1635), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [596] = { + [sym_identifier] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_RBRACK] = ACTIONS(2445), + [anon_sym_DOLLAR] = ACTIONS(2443), + [anon_sym_u8] = ACTIONS(2443), + [anon_sym_i8] = ACTIONS(2443), + [anon_sym_u16] = ACTIONS(2443), + [anon_sym_i16] = ACTIONS(2443), + [anon_sym_u32] = ACTIONS(2443), + [anon_sym_i32] = ACTIONS(2443), + [anon_sym_u64] = ACTIONS(2443), + [anon_sym_i64] = ACTIONS(2443), + [anon_sym_u128] = ACTIONS(2443), + [anon_sym_i128] = ACTIONS(2443), + [anon_sym_isize] = ACTIONS(2443), + [anon_sym_usize] = ACTIONS(2443), + [anon_sym_f32] = ACTIONS(2443), + [anon_sym_f64] = ACTIONS(2443), + [anon_sym_bool] = ACTIONS(2443), + [anon_sym_str] = ACTIONS(2443), + [anon_sym_char] = ACTIONS(2443), + [aux_sym__non_special_token_token1] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_as] = ACTIONS(2443), + [anon_sym_async] = ACTIONS(2443), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_break] = ACTIONS(2443), + [anon_sym_const] = ACTIONS(2443), + [anon_sym_continue] = ACTIONS(2443), + [anon_sym_default] = ACTIONS(2443), + [anon_sym_enum] = ACTIONS(2443), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_for] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_impl] = ACTIONS(2443), + [anon_sym_let] = ACTIONS(2443), + [anon_sym_loop] = ACTIONS(2443), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_mod] = ACTIONS(2443), + [anon_sym_pub] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2443), + [anon_sym_static] = ACTIONS(2443), + [anon_sym_struct] = ACTIONS(2443), + [anon_sym_trait] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2443), + [anon_sym_union] = ACTIONS(2443), + [anon_sym_unsafe] = ACTIONS(2443), + [anon_sym_use] = ACTIONS(2443), + [anon_sym_where] = ACTIONS(2443), + [anon_sym_while] = ACTIONS(2443), + [sym_mutable_specifier] = ACTIONS(2443), + [sym_integer_literal] = ACTIONS(2445), + [aux_sym_string_literal_token1] = ACTIONS(2445), + [sym_char_literal] = ACTIONS(2445), + [anon_sym_true] = ACTIONS(2443), + [anon_sym_false] = ACTIONS(2443), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2443), + [sym_super] = ACTIONS(2443), + [sym_crate] = ACTIONS(2443), + [sym_metavariable] = ACTIONS(2445), + [sym_raw_string_literal] = ACTIONS(2445), + [sym_float_literal] = ACTIONS(2445), + [sym_block_comment] = ACTIONS(3), + }, + [597] = { + [sym_identifier] = ACTIONS(2447), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_RBRACK] = ACTIONS(2449), + [anon_sym_DOLLAR] = ACTIONS(2447), + [anon_sym_u8] = ACTIONS(2447), + [anon_sym_i8] = ACTIONS(2447), + [anon_sym_u16] = ACTIONS(2447), + [anon_sym_i16] = ACTIONS(2447), + [anon_sym_u32] = ACTIONS(2447), + [anon_sym_i32] = ACTIONS(2447), + [anon_sym_u64] = ACTIONS(2447), + [anon_sym_i64] = ACTIONS(2447), + [anon_sym_u128] = ACTIONS(2447), + [anon_sym_i128] = ACTIONS(2447), + [anon_sym_isize] = ACTIONS(2447), + [anon_sym_usize] = ACTIONS(2447), + [anon_sym_f32] = ACTIONS(2447), + [anon_sym_f64] = ACTIONS(2447), + [anon_sym_bool] = ACTIONS(2447), + [anon_sym_str] = ACTIONS(2447), + [anon_sym_char] = ACTIONS(2447), + [aux_sym__non_special_token_token1] = ACTIONS(2447), + [anon_sym_SQUOTE] = ACTIONS(2447), + [anon_sym_as] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_await] = ACTIONS(2447), + [anon_sym_break] = ACTIONS(2447), + [anon_sym_const] = ACTIONS(2447), + [anon_sym_continue] = ACTIONS(2447), + [anon_sym_default] = ACTIONS(2447), + [anon_sym_enum] = ACTIONS(2447), + [anon_sym_fn] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_impl] = ACTIONS(2447), + [anon_sym_let] = ACTIONS(2447), + [anon_sym_loop] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_mod] = ACTIONS(2447), + [anon_sym_pub] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2447), + [anon_sym_static] = ACTIONS(2447), + [anon_sym_struct] = ACTIONS(2447), + [anon_sym_trait] = ACTIONS(2447), + [anon_sym_type] = ACTIONS(2447), + [anon_sym_union] = ACTIONS(2447), + [anon_sym_unsafe] = ACTIONS(2447), + [anon_sym_use] = ACTIONS(2447), + [anon_sym_where] = ACTIONS(2447), + [anon_sym_while] = ACTIONS(2447), + [sym_mutable_specifier] = ACTIONS(2447), + [sym_integer_literal] = ACTIONS(2449), + [aux_sym_string_literal_token1] = ACTIONS(2449), + [sym_char_literal] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(2447), + [anon_sym_false] = ACTIONS(2447), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2447), + [sym_super] = ACTIONS(2447), + [sym_crate] = ACTIONS(2447), + [sym_metavariable] = ACTIONS(2449), + [sym_raw_string_literal] = ACTIONS(2449), + [sym_float_literal] = ACTIONS(2449), + [sym_block_comment] = ACTIONS(3), + }, + [598] = { + [sym_function_modifiers] = STATE(2463), + [sym_const_parameter] = STATE(1916), + [sym_constrained_type_parameter] = STATE(1813), + [sym_optional_type_parameter] = STATE(1916), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2025), + [sym_bracketed_type] = STATE(2428), + [sym_qualified_type] = STATE(2406), + [sym_lifetime] = STATE(1693), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2451), [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2453), [anon_sym_u8] = ACTIONS(908), [anon_sym_i8] = ACTIONS(908), [anon_sym_u16] = ACTIONS(908), @@ -69584,12 +72094,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), + [anon_sym_const] = ACTIONS(2453), [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), @@ -69603,61 +72113,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(922), [sym_super] = ACTIONS(922), [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), + [sym_metavariable] = ACTIONS(2455), [sym_block_comment] = ACTIONS(3), }, - [603] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1873), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [599] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1894), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -69667,44 +72178,672 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, + [600] = { + [sym_identifier] = ACTIONS(2459), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_RPAREN] = ACTIONS(2461), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_RBRACK] = ACTIONS(2461), + [anon_sym_DOLLAR] = ACTIONS(2459), + [anon_sym_u8] = ACTIONS(2459), + [anon_sym_i8] = ACTIONS(2459), + [anon_sym_u16] = ACTIONS(2459), + [anon_sym_i16] = ACTIONS(2459), + [anon_sym_u32] = ACTIONS(2459), + [anon_sym_i32] = ACTIONS(2459), + [anon_sym_u64] = ACTIONS(2459), + [anon_sym_i64] = ACTIONS(2459), + [anon_sym_u128] = ACTIONS(2459), + [anon_sym_i128] = ACTIONS(2459), + [anon_sym_isize] = ACTIONS(2459), + [anon_sym_usize] = ACTIONS(2459), + [anon_sym_f32] = ACTIONS(2459), + [anon_sym_f64] = ACTIONS(2459), + [anon_sym_bool] = ACTIONS(2459), + [anon_sym_str] = ACTIONS(2459), + [anon_sym_char] = ACTIONS(2459), + [aux_sym__non_special_token_token1] = ACTIONS(2459), + [anon_sym_SQUOTE] = ACTIONS(2459), + [anon_sym_as] = ACTIONS(2459), + [anon_sym_async] = ACTIONS(2459), + [anon_sym_await] = ACTIONS(2459), + [anon_sym_break] = ACTIONS(2459), + [anon_sym_const] = ACTIONS(2459), + [anon_sym_continue] = ACTIONS(2459), + [anon_sym_default] = ACTIONS(2459), + [anon_sym_enum] = ACTIONS(2459), + [anon_sym_fn] = ACTIONS(2459), + [anon_sym_for] = ACTIONS(2459), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_impl] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2459), + [anon_sym_loop] = ACTIONS(2459), + [anon_sym_match] = ACTIONS(2459), + [anon_sym_mod] = ACTIONS(2459), + [anon_sym_pub] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2459), + [anon_sym_static] = ACTIONS(2459), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_trait] = ACTIONS(2459), + [anon_sym_type] = ACTIONS(2459), + [anon_sym_union] = ACTIONS(2459), + [anon_sym_unsafe] = ACTIONS(2459), + [anon_sym_use] = ACTIONS(2459), + [anon_sym_where] = ACTIONS(2459), + [anon_sym_while] = ACTIONS(2459), + [sym_mutable_specifier] = ACTIONS(2459), + [sym_integer_literal] = ACTIONS(2461), + [aux_sym_string_literal_token1] = ACTIONS(2461), + [sym_char_literal] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2459), + [anon_sym_false] = ACTIONS(2459), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2459), + [sym_super] = ACTIONS(2459), + [sym_crate] = ACTIONS(2459), + [sym_metavariable] = ACTIONS(2461), + [sym_raw_string_literal] = ACTIONS(2461), + [sym_float_literal] = ACTIONS(2461), + [sym_block_comment] = ACTIONS(3), + }, + [601] = { + [sym_identifier] = ACTIONS(2463), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_RPAREN] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_RBRACK] = ACTIONS(2465), + [anon_sym_DOLLAR] = ACTIONS(2463), + [anon_sym_u8] = ACTIONS(2463), + [anon_sym_i8] = ACTIONS(2463), + [anon_sym_u16] = ACTIONS(2463), + [anon_sym_i16] = ACTIONS(2463), + [anon_sym_u32] = ACTIONS(2463), + [anon_sym_i32] = ACTIONS(2463), + [anon_sym_u64] = ACTIONS(2463), + [anon_sym_i64] = ACTIONS(2463), + [anon_sym_u128] = ACTIONS(2463), + [anon_sym_i128] = ACTIONS(2463), + [anon_sym_isize] = ACTIONS(2463), + [anon_sym_usize] = ACTIONS(2463), + [anon_sym_f32] = ACTIONS(2463), + [anon_sym_f64] = ACTIONS(2463), + [anon_sym_bool] = ACTIONS(2463), + [anon_sym_str] = ACTIONS(2463), + [anon_sym_char] = ACTIONS(2463), + [aux_sym__non_special_token_token1] = ACTIONS(2463), + [anon_sym_SQUOTE] = ACTIONS(2463), + [anon_sym_as] = ACTIONS(2463), + [anon_sym_async] = ACTIONS(2463), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_break] = ACTIONS(2463), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_continue] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(2463), + [anon_sym_enum] = ACTIONS(2463), + [anon_sym_fn] = ACTIONS(2463), + [anon_sym_for] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_impl] = ACTIONS(2463), + [anon_sym_let] = ACTIONS(2463), + [anon_sym_loop] = ACTIONS(2463), + [anon_sym_match] = ACTIONS(2463), + [anon_sym_mod] = ACTIONS(2463), + [anon_sym_pub] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2463), + [anon_sym_static] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_trait] = ACTIONS(2463), + [anon_sym_type] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2463), + [anon_sym_unsafe] = ACTIONS(2463), + [anon_sym_use] = ACTIONS(2463), + [anon_sym_where] = ACTIONS(2463), + [anon_sym_while] = ACTIONS(2463), + [sym_mutable_specifier] = ACTIONS(2463), + [sym_integer_literal] = ACTIONS(2465), + [aux_sym_string_literal_token1] = ACTIONS(2465), + [sym_char_literal] = ACTIONS(2465), + [anon_sym_true] = ACTIONS(2463), + [anon_sym_false] = ACTIONS(2463), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2463), + [sym_super] = ACTIONS(2463), + [sym_crate] = ACTIONS(2463), + [sym_metavariable] = ACTIONS(2465), + [sym_raw_string_literal] = ACTIONS(2465), + [sym_float_literal] = ACTIONS(2465), + [sym_block_comment] = ACTIONS(3), + }, + [602] = { + [sym_identifier] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_RPAREN] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_RBRACK] = ACTIONS(2469), + [anon_sym_DOLLAR] = ACTIONS(2467), + [anon_sym_u8] = ACTIONS(2467), + [anon_sym_i8] = ACTIONS(2467), + [anon_sym_u16] = ACTIONS(2467), + [anon_sym_i16] = ACTIONS(2467), + [anon_sym_u32] = ACTIONS(2467), + [anon_sym_i32] = ACTIONS(2467), + [anon_sym_u64] = ACTIONS(2467), + [anon_sym_i64] = ACTIONS(2467), + [anon_sym_u128] = ACTIONS(2467), + [anon_sym_i128] = ACTIONS(2467), + [anon_sym_isize] = ACTIONS(2467), + [anon_sym_usize] = ACTIONS(2467), + [anon_sym_f32] = ACTIONS(2467), + [anon_sym_f64] = ACTIONS(2467), + [anon_sym_bool] = ACTIONS(2467), + [anon_sym_str] = ACTIONS(2467), + [anon_sym_char] = ACTIONS(2467), + [aux_sym__non_special_token_token1] = ACTIONS(2467), + [anon_sym_SQUOTE] = ACTIONS(2467), + [anon_sym_as] = ACTIONS(2467), + [anon_sym_async] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_const] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_enum] = ACTIONS(2467), + [anon_sym_fn] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_impl] = ACTIONS(2467), + [anon_sym_let] = ACTIONS(2467), + [anon_sym_loop] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2467), + [anon_sym_mod] = ACTIONS(2467), + [anon_sym_pub] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2467), + [anon_sym_static] = ACTIONS(2467), + [anon_sym_struct] = ACTIONS(2467), + [anon_sym_trait] = ACTIONS(2467), + [anon_sym_type] = ACTIONS(2467), + [anon_sym_union] = ACTIONS(2467), + [anon_sym_unsafe] = ACTIONS(2467), + [anon_sym_use] = ACTIONS(2467), + [anon_sym_where] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2467), + [sym_mutable_specifier] = ACTIONS(2467), + [sym_integer_literal] = ACTIONS(2469), + [aux_sym_string_literal_token1] = ACTIONS(2469), + [sym_char_literal] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(2467), + [anon_sym_false] = ACTIONS(2467), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2467), + [sym_super] = ACTIONS(2467), + [sym_crate] = ACTIONS(2467), + [sym_metavariable] = ACTIONS(2469), + [sym_raw_string_literal] = ACTIONS(2469), + [sym_float_literal] = ACTIONS(2469), + [sym_block_comment] = ACTIONS(3), + }, + [603] = { + [sym_identifier] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_RPAREN] = ACTIONS(2473), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_RBRACK] = ACTIONS(2473), + [anon_sym_DOLLAR] = ACTIONS(2471), + [anon_sym_u8] = ACTIONS(2471), + [anon_sym_i8] = ACTIONS(2471), + [anon_sym_u16] = ACTIONS(2471), + [anon_sym_i16] = ACTIONS(2471), + [anon_sym_u32] = ACTIONS(2471), + [anon_sym_i32] = ACTIONS(2471), + [anon_sym_u64] = ACTIONS(2471), + [anon_sym_i64] = ACTIONS(2471), + [anon_sym_u128] = ACTIONS(2471), + [anon_sym_i128] = ACTIONS(2471), + [anon_sym_isize] = ACTIONS(2471), + [anon_sym_usize] = ACTIONS(2471), + [anon_sym_f32] = ACTIONS(2471), + [anon_sym_f64] = ACTIONS(2471), + [anon_sym_bool] = ACTIONS(2471), + [anon_sym_str] = ACTIONS(2471), + [anon_sym_char] = ACTIONS(2471), + [aux_sym__non_special_token_token1] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_as] = ACTIONS(2471), + [anon_sym_async] = ACTIONS(2471), + [anon_sym_await] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_default] = ACTIONS(2471), + [anon_sym_enum] = ACTIONS(2471), + [anon_sym_fn] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_impl] = ACTIONS(2471), + [anon_sym_let] = ACTIONS(2471), + [anon_sym_loop] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_mod] = ACTIONS(2471), + [anon_sym_pub] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_static] = ACTIONS(2471), + [anon_sym_struct] = ACTIONS(2471), + [anon_sym_trait] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_use] = ACTIONS(2471), + [anon_sym_where] = ACTIONS(2471), + [anon_sym_while] = ACTIONS(2471), + [sym_mutable_specifier] = ACTIONS(2471), + [sym_integer_literal] = ACTIONS(2473), + [aux_sym_string_literal_token1] = ACTIONS(2473), + [sym_char_literal] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(2471), + [anon_sym_false] = ACTIONS(2471), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2471), + [sym_super] = ACTIONS(2471), + [sym_crate] = ACTIONS(2471), + [sym_metavariable] = ACTIONS(2473), + [sym_raw_string_literal] = ACTIONS(2473), + [sym_float_literal] = ACTIONS(2473), + [sym_block_comment] = ACTIONS(3), + }, [604] = { - [sym_function_modifiers] = STATE(2420), - [sym_higher_ranked_trait_bound] = STATE(1602), - [sym_removed_trait_bound] = STATE(1602), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1629), - [sym_bracketed_type] = STATE(2383), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2477), + [anon_sym_RBRACK] = ACTIONS(2477), + [anon_sym_DOLLAR] = ACTIONS(2475), + [anon_sym_u8] = ACTIONS(2475), + [anon_sym_i8] = ACTIONS(2475), + [anon_sym_u16] = ACTIONS(2475), + [anon_sym_i16] = ACTIONS(2475), + [anon_sym_u32] = ACTIONS(2475), + [anon_sym_i32] = ACTIONS(2475), + [anon_sym_u64] = ACTIONS(2475), + [anon_sym_i64] = ACTIONS(2475), + [anon_sym_u128] = ACTIONS(2475), + [anon_sym_i128] = ACTIONS(2475), + [anon_sym_isize] = ACTIONS(2475), + [anon_sym_usize] = ACTIONS(2475), + [anon_sym_f32] = ACTIONS(2475), + [anon_sym_f64] = ACTIONS(2475), + [anon_sym_bool] = ACTIONS(2475), + [anon_sym_str] = ACTIONS(2475), + [anon_sym_char] = ACTIONS(2475), + [aux_sym__non_special_token_token1] = ACTIONS(2475), + [anon_sym_SQUOTE] = ACTIONS(2475), + [anon_sym_as] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_await] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_default] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_impl] = ACTIONS(2475), + [anon_sym_let] = ACTIONS(2475), + [anon_sym_loop] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_mod] = ACTIONS(2475), + [anon_sym_pub] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2475), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_trait] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_use] = ACTIONS(2475), + [anon_sym_where] = ACTIONS(2475), + [anon_sym_while] = ACTIONS(2475), + [sym_mutable_specifier] = ACTIONS(2475), + [sym_integer_literal] = ACTIONS(2477), + [aux_sym_string_literal_token1] = ACTIONS(2477), + [sym_char_literal] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(2475), + [anon_sym_false] = ACTIONS(2475), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2475), + [sym_super] = ACTIONS(2475), + [sym_crate] = ACTIONS(2475), + [sym_metavariable] = ACTIONS(2477), + [sym_raw_string_literal] = ACTIONS(2477), + [sym_float_literal] = ACTIONS(2477), + [sym_block_comment] = ACTIONS(3), + }, + [605] = { + [sym_identifier] = ACTIONS(2479), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_RPAREN] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_RBRACK] = ACTIONS(2481), + [anon_sym_DOLLAR] = ACTIONS(2479), + [anon_sym_u8] = ACTIONS(2479), + [anon_sym_i8] = ACTIONS(2479), + [anon_sym_u16] = ACTIONS(2479), + [anon_sym_i16] = ACTIONS(2479), + [anon_sym_u32] = ACTIONS(2479), + [anon_sym_i32] = ACTIONS(2479), + [anon_sym_u64] = ACTIONS(2479), + [anon_sym_i64] = ACTIONS(2479), + [anon_sym_u128] = ACTIONS(2479), + [anon_sym_i128] = ACTIONS(2479), + [anon_sym_isize] = ACTIONS(2479), + [anon_sym_usize] = ACTIONS(2479), + [anon_sym_f32] = ACTIONS(2479), + [anon_sym_f64] = ACTIONS(2479), + [anon_sym_bool] = ACTIONS(2479), + [anon_sym_str] = ACTIONS(2479), + [anon_sym_char] = ACTIONS(2479), + [aux_sym__non_special_token_token1] = ACTIONS(2479), + [anon_sym_SQUOTE] = ACTIONS(2479), + [anon_sym_as] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_default] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_fn] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_impl] = ACTIONS(2479), + [anon_sym_let] = ACTIONS(2479), + [anon_sym_loop] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_mod] = ACTIONS(2479), + [anon_sym_pub] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_trait] = ACTIONS(2479), + [anon_sym_type] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_unsafe] = ACTIONS(2479), + [anon_sym_use] = ACTIONS(2479), + [anon_sym_where] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [sym_mutable_specifier] = ACTIONS(2479), + [sym_integer_literal] = ACTIONS(2481), + [aux_sym_string_literal_token1] = ACTIONS(2481), + [sym_char_literal] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2479), + [anon_sym_false] = ACTIONS(2479), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2479), + [sym_super] = ACTIONS(2479), + [sym_crate] = ACTIONS(2479), + [sym_metavariable] = ACTIONS(2481), + [sym_raw_string_literal] = ACTIONS(2481), + [sym_float_literal] = ACTIONS(2481), + [sym_block_comment] = ACTIONS(3), + }, + [606] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1894), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(2483), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [607] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_RPAREN] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_RBRACK] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2407), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_as] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_await] = 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_where] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [sym_mutable_specifier] = ACTIONS(2405), + [sym_integer_literal] = ACTIONS(2407), + [aux_sym_string_literal_token1] = ACTIONS(2407), + [sym_char_literal] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2405), + [sym_super] = ACTIONS(2405), + [sym_crate] = ACTIONS(2405), + [sym_raw_string_literal] = ACTIONS(2407), + [sym_float_literal] = ACTIONS(2407), + [sym_block_comment] = ACTIONS(3), + }, + [608] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2024), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [609] = { + [sym_function_modifiers] = STATE(2463), + [sym_higher_ranked_trait_bound] = STATE(1616), + [sym_removed_trait_bound] = STATE(1616), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1641), + [sym_bracketed_type] = STATE(2428), [sym_lifetime] = STATE(1614), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2485), [anon_sym_u8] = ACTIONS(908), [anon_sym_i8] = ACTIONS(908), [anon_sym_u16] = ACTIONS(908), @@ -69722,12 +72861,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2487), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), @@ -69744,58 +72883,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [605] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2193), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [610] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2223), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -69805,136 +72944,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [606] = { - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_RPAREN] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_RBRACK] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2391), - [anon_sym_u8] = ACTIONS(2389), - [anon_sym_i8] = ACTIONS(2389), - [anon_sym_u16] = ACTIONS(2389), - [anon_sym_i16] = ACTIONS(2389), - [anon_sym_u32] = ACTIONS(2389), - [anon_sym_i32] = ACTIONS(2389), - [anon_sym_u64] = ACTIONS(2389), - [anon_sym_i64] = ACTIONS(2389), - [anon_sym_u128] = ACTIONS(2389), - [anon_sym_i128] = ACTIONS(2389), - [anon_sym_isize] = ACTIONS(2389), - [anon_sym_usize] = ACTIONS(2389), - [anon_sym_f32] = ACTIONS(2389), - [anon_sym_f64] = ACTIONS(2389), - [anon_sym_bool] = ACTIONS(2389), - [anon_sym_str] = ACTIONS(2389), - [anon_sym_char] = ACTIONS(2389), - [aux_sym__non_special_token_token1] = ACTIONS(2389), - [anon_sym_SQUOTE] = ACTIONS(2389), - [anon_sym_as] = ACTIONS(2389), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_default] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [anon_sym_fn] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_impl] = ACTIONS(2389), - [anon_sym_let] = ACTIONS(2389), - [anon_sym_loop] = ACTIONS(2389), - [anon_sym_match] = ACTIONS(2389), - [anon_sym_mod] = ACTIONS(2389), - [anon_sym_pub] = ACTIONS(2389), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_static] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(2389), - [anon_sym_trait] = ACTIONS(2389), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_union] = ACTIONS(2389), - [anon_sym_unsafe] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_where] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [sym_mutable_specifier] = ACTIONS(2389), - [sym_integer_literal] = ACTIONS(2391), - [aux_sym_string_literal_token1] = ACTIONS(2391), - [sym_char_literal] = ACTIONS(2391), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2389), - [sym_super] = ACTIONS(2389), - [sym_crate] = ACTIONS(2389), - [sym_raw_string_literal] = ACTIONS(2391), - [sym_float_literal] = ACTIONS(2391), - [sym_block_comment] = ACTIONS(3), - }, - [607] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1811), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [611] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2208), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -69943,66 +73013,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [608] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2196), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [612] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1894), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70012,66 +73082,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [609] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2270), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [613] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70081,66 +73151,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [610] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2197), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [614] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2207), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70150,66 +73220,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [611] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2191), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [615] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2324), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70219,205 +73289,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [612] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2203), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [616] = { + [sym_function_modifiers] = STATE(2463), + [sym_higher_ranked_trait_bound] = STATE(1616), + [sym_removed_trait_bound] = STATE(1616), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1641), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(1622), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2485), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [613] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1480), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [614] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2205), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [617] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1800), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(2489), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -70426,135 +73427,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [615] = { - [sym_identifier] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_RBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2447), - [anon_sym_u8] = ACTIONS(2445), - [anon_sym_i8] = ACTIONS(2445), - [anon_sym_u16] = ACTIONS(2445), - [anon_sym_i16] = ACTIONS(2445), - [anon_sym_u32] = ACTIONS(2445), - [anon_sym_i32] = ACTIONS(2445), - [anon_sym_u64] = ACTIONS(2445), - [anon_sym_i64] = ACTIONS(2445), - [anon_sym_u128] = ACTIONS(2445), - [anon_sym_i128] = ACTIONS(2445), - [anon_sym_isize] = ACTIONS(2445), - [anon_sym_usize] = ACTIONS(2445), - [anon_sym_f32] = ACTIONS(2445), - [anon_sym_f64] = ACTIONS(2445), - [anon_sym_bool] = ACTIONS(2445), - [anon_sym_str] = ACTIONS(2445), - [anon_sym_char] = ACTIONS(2445), - [aux_sym__non_special_token_token1] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2445), - [anon_sym_as] = ACTIONS(2445), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_await] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_default] = ACTIONS(2445), - [anon_sym_enum] = ACTIONS(2445), - [anon_sym_fn] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_impl] = ACTIONS(2445), - [anon_sym_let] = ACTIONS(2445), - [anon_sym_loop] = ACTIONS(2445), - [anon_sym_match] = ACTIONS(2445), - [anon_sym_mod] = ACTIONS(2445), - [anon_sym_pub] = ACTIONS(2445), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_struct] = ACTIONS(2445), - [anon_sym_trait] = ACTIONS(2445), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_union] = ACTIONS(2445), - [anon_sym_unsafe] = ACTIONS(2445), - [anon_sym_use] = ACTIONS(2445), - [anon_sym_where] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [sym_mutable_specifier] = ACTIONS(2445), - [sym_integer_literal] = ACTIONS(2447), - [aux_sym_string_literal_token1] = ACTIONS(2447), - [sym_char_literal] = ACTIONS(2447), - [anon_sym_true] = ACTIONS(2445), - [anon_sym_false] = ACTIONS(2445), + [618] = { + [sym_function_modifiers] = STATE(2463), + [sym_higher_ranked_trait_bound] = STATE(1616), + [sym_removed_trait_bound] = STATE(1616), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1615), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(1614), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2485), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, + [619] = { + [sym_identifier] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_RPAREN] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_RBRACK] = ACTIONS(2431), + [anon_sym_DOLLAR] = ACTIONS(2431), + [anon_sym_u8] = ACTIONS(2429), + [anon_sym_i8] = ACTIONS(2429), + [anon_sym_u16] = ACTIONS(2429), + [anon_sym_i16] = ACTIONS(2429), + [anon_sym_u32] = ACTIONS(2429), + [anon_sym_i32] = ACTIONS(2429), + [anon_sym_u64] = ACTIONS(2429), + [anon_sym_i64] = ACTIONS(2429), + [anon_sym_u128] = ACTIONS(2429), + [anon_sym_i128] = ACTIONS(2429), + [anon_sym_isize] = ACTIONS(2429), + [anon_sym_usize] = ACTIONS(2429), + [anon_sym_f32] = ACTIONS(2429), + [anon_sym_f64] = ACTIONS(2429), + [anon_sym_bool] = ACTIONS(2429), + [anon_sym_str] = ACTIONS(2429), + [anon_sym_char] = ACTIONS(2429), + [aux_sym__non_special_token_token1] = ACTIONS(2429), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_await] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_impl] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_mod] = ACTIONS(2429), + [anon_sym_pub] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_where] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [sym_mutable_specifier] = ACTIONS(2429), + [sym_integer_literal] = ACTIONS(2431), + [aux_sym_string_literal_token1] = ACTIONS(2431), + [sym_char_literal] = ACTIONS(2431), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2445), - [sym_super] = ACTIONS(2445), - [sym_crate] = ACTIONS(2445), - [sym_raw_string_literal] = ACTIONS(2447), - [sym_float_literal] = ACTIONS(2447), + [sym_self] = ACTIONS(2429), + [sym_super] = ACTIONS(2429), + [sym_crate] = ACTIONS(2429), + [sym_raw_string_literal] = ACTIONS(2431), + [sym_float_literal] = ACTIONS(2431), [sym_block_comment] = ACTIONS(3), }, - [616] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2297), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [620] = { + [sym_identifier] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_RPAREN] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_RBRACK] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_u8] = ACTIONS(560), + [anon_sym_i8] = ACTIONS(560), + [anon_sym_u16] = ACTIONS(560), + [anon_sym_i16] = ACTIONS(560), + [anon_sym_u32] = ACTIONS(560), + [anon_sym_i32] = ACTIONS(560), + [anon_sym_u64] = ACTIONS(560), + [anon_sym_i64] = ACTIONS(560), + [anon_sym_u128] = ACTIONS(560), + [anon_sym_i128] = ACTIONS(560), + [anon_sym_isize] = ACTIONS(560), + [anon_sym_usize] = ACTIONS(560), + [anon_sym_f32] = ACTIONS(560), + [anon_sym_f64] = ACTIONS(560), + [anon_sym_bool] = ACTIONS(560), + [anon_sym_str] = ACTIONS(560), + [anon_sym_char] = ACTIONS(560), + [aux_sym__non_special_token_token1] = ACTIONS(560), + [anon_sym_SQUOTE] = ACTIONS(560), + [anon_sym_as] = ACTIONS(560), + [anon_sym_async] = ACTIONS(560), + [anon_sym_await] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_const] = ACTIONS(560), + [anon_sym_continue] = ACTIONS(560), + [anon_sym_default] = ACTIONS(560), + [anon_sym_enum] = ACTIONS(560), + [anon_sym_fn] = ACTIONS(560), + [anon_sym_for] = ACTIONS(560), + [anon_sym_if] = ACTIONS(560), + [anon_sym_impl] = ACTIONS(560), + [anon_sym_let] = ACTIONS(560), + [anon_sym_loop] = ACTIONS(560), + [anon_sym_match] = ACTIONS(560), + [anon_sym_mod] = ACTIONS(560), + [anon_sym_pub] = ACTIONS(560), + [anon_sym_return] = ACTIONS(560), + [anon_sym_static] = ACTIONS(560), + [anon_sym_struct] = ACTIONS(560), + [anon_sym_trait] = ACTIONS(560), + [anon_sym_type] = ACTIONS(560), + [anon_sym_union] = ACTIONS(560), + [anon_sym_unsafe] = ACTIONS(560), + [anon_sym_use] = ACTIONS(560), + [anon_sym_where] = ACTIONS(560), + [anon_sym_while] = ACTIONS(560), + [sym_mutable_specifier] = ACTIONS(560), + [sym_integer_literal] = ACTIONS(558), + [aux_sym_string_literal_token1] = ACTIONS(558), + [sym_char_literal] = ACTIONS(558), + [anon_sym_true] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(560), + [sym_super] = ACTIONS(560), + [sym_crate] = ACTIONS(560), + [sym_raw_string_literal] = ACTIONS(558), + [sym_float_literal] = ACTIONS(558), + [sym_block_comment] = ACTIONS(3), + }, + [621] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1472), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70564,204 +73703,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [617] = { - [sym_identifier] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_RBRACK] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2387), - [anon_sym_u8] = ACTIONS(2385), - [anon_sym_i8] = ACTIONS(2385), - [anon_sym_u16] = ACTIONS(2385), - [anon_sym_i16] = ACTIONS(2385), - [anon_sym_u32] = ACTIONS(2385), - [anon_sym_i32] = ACTIONS(2385), - [anon_sym_u64] = ACTIONS(2385), - [anon_sym_i64] = ACTIONS(2385), - [anon_sym_u128] = ACTIONS(2385), - [anon_sym_i128] = ACTIONS(2385), - [anon_sym_isize] = ACTIONS(2385), - [anon_sym_usize] = ACTIONS(2385), - [anon_sym_f32] = ACTIONS(2385), - [anon_sym_f64] = ACTIONS(2385), - [anon_sym_bool] = ACTIONS(2385), - [anon_sym_str] = ACTIONS(2385), - [anon_sym_char] = ACTIONS(2385), - [aux_sym__non_special_token_token1] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2385), - [anon_sym_as] = ACTIONS(2385), - [anon_sym_async] = ACTIONS(2385), - [anon_sym_await] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_impl] = ACTIONS(2385), - [anon_sym_let] = ACTIONS(2385), - [anon_sym_loop] = ACTIONS(2385), - [anon_sym_match] = ACTIONS(2385), - [anon_sym_mod] = ACTIONS(2385), - [anon_sym_pub] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2385), - [anon_sym_trait] = ACTIONS(2385), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_unsafe] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_where] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [sym_mutable_specifier] = ACTIONS(2385), - [sym_integer_literal] = ACTIONS(2387), - [aux_sym_string_literal_token1] = ACTIONS(2387), - [sym_char_literal] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2385), - [sym_super] = ACTIONS(2385), - [sym_crate] = ACTIONS(2385), - [sym_raw_string_literal] = ACTIONS(2387), - [sym_float_literal] = ACTIONS(2387), - [sym_block_comment] = ACTIONS(3), - }, - [618] = { - [sym_identifier] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_DOLLAR] = ACTIONS(2435), - [anon_sym_u8] = ACTIONS(2433), - [anon_sym_i8] = ACTIONS(2433), - [anon_sym_u16] = ACTIONS(2433), - [anon_sym_i16] = ACTIONS(2433), - [anon_sym_u32] = ACTIONS(2433), - [anon_sym_i32] = ACTIONS(2433), - [anon_sym_u64] = ACTIONS(2433), - [anon_sym_i64] = ACTIONS(2433), - [anon_sym_u128] = ACTIONS(2433), - [anon_sym_i128] = ACTIONS(2433), - [anon_sym_isize] = ACTIONS(2433), - [anon_sym_usize] = ACTIONS(2433), - [anon_sym_f32] = ACTIONS(2433), - [anon_sym_f64] = ACTIONS(2433), - [anon_sym_bool] = ACTIONS(2433), - [anon_sym_str] = ACTIONS(2433), - [anon_sym_char] = ACTIONS(2433), - [aux_sym__non_special_token_token1] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_await] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_fn] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_impl] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_loop] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_mod] = ACTIONS(2433), - [anon_sym_pub] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_trait] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_unsafe] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_where] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [sym_mutable_specifier] = ACTIONS(2433), - [sym_integer_literal] = ACTIONS(2435), - [aux_sym_string_literal_token1] = ACTIONS(2435), - [sym_char_literal] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2433), - [anon_sym_false] = ACTIONS(2433), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2433), - [sym_super] = ACTIONS(2433), - [sym_crate] = ACTIONS(2433), - [sym_raw_string_literal] = ACTIONS(2435), - [sym_float_literal] = ACTIONS(2435), - [sym_block_comment] = ACTIONS(3), - }, - [619] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2175), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [622] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1884), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70771,66 +73772,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(2493), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [620] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1917), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [623] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1941), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70840,66 +73841,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [621] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1483), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [624] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1884), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70909,113 +73910,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(2495), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [622] = { - [sym_function_modifiers] = STATE(2420), - [sym_higher_ranked_trait_bound] = STATE(1590), - [sym_removed_trait_bound] = STATE(1590), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1592), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1593), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2453), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [623] = { - [sym_function_modifiers] = STATE(2420), - [sym_higher_ranked_trait_bound] = STATE(1602), - [sym_removed_trait_bound] = STATE(1602), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1612), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1614), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [625] = { + [sym_function_modifiers] = STATE(2463), + [sym_higher_ranked_trait_bound] = STATE(1579), + [sym_removed_trait_bound] = STATE(1579), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1586), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(1610), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2485), [anon_sym_u8] = ACTIONS(908), [anon_sym_i8] = ACTIONS(908), [anon_sym_u16] = ACTIONS(908), @@ -71033,12 +73965,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2487), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), @@ -71055,196 +73987,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [624] = { - [sym_identifier] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_RPAREN] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_RBRACK] = ACTIONS(620), - [anon_sym_DOLLAR] = ACTIONS(620), - [anon_sym_u8] = ACTIONS(622), - [anon_sym_i8] = ACTIONS(622), - [anon_sym_u16] = ACTIONS(622), - [anon_sym_i16] = ACTIONS(622), - [anon_sym_u32] = ACTIONS(622), - [anon_sym_i32] = ACTIONS(622), - [anon_sym_u64] = ACTIONS(622), - [anon_sym_i64] = ACTIONS(622), - [anon_sym_u128] = ACTIONS(622), - [anon_sym_i128] = ACTIONS(622), - [anon_sym_isize] = ACTIONS(622), - [anon_sym_usize] = ACTIONS(622), - [anon_sym_f32] = ACTIONS(622), - [anon_sym_f64] = ACTIONS(622), - [anon_sym_bool] = ACTIONS(622), - [anon_sym_str] = ACTIONS(622), - [anon_sym_char] = ACTIONS(622), - [aux_sym__non_special_token_token1] = ACTIONS(622), - [anon_sym_SQUOTE] = ACTIONS(622), - [anon_sym_as] = ACTIONS(622), - [anon_sym_async] = ACTIONS(622), - [anon_sym_await] = ACTIONS(622), - [anon_sym_break] = ACTIONS(622), - [anon_sym_const] = ACTIONS(622), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_enum] = ACTIONS(622), - [anon_sym_fn] = ACTIONS(622), - [anon_sym_for] = ACTIONS(622), - [anon_sym_if] = ACTIONS(622), - [anon_sym_impl] = ACTIONS(622), - [anon_sym_let] = ACTIONS(622), - [anon_sym_loop] = ACTIONS(622), - [anon_sym_match] = ACTIONS(622), - [anon_sym_mod] = ACTIONS(622), - [anon_sym_pub] = ACTIONS(622), - [anon_sym_return] = ACTIONS(622), - [anon_sym_static] = ACTIONS(622), - [anon_sym_struct] = ACTIONS(622), - [anon_sym_trait] = ACTIONS(622), - [anon_sym_type] = ACTIONS(622), - [anon_sym_union] = ACTIONS(622), - [anon_sym_unsafe] = ACTIONS(622), - [anon_sym_use] = ACTIONS(622), - [anon_sym_where] = ACTIONS(622), - [anon_sym_while] = ACTIONS(622), - [sym_mutable_specifier] = ACTIONS(622), - [sym_integer_literal] = ACTIONS(620), - [aux_sym_string_literal_token1] = ACTIONS(620), - [sym_char_literal] = ACTIONS(620), - [anon_sym_true] = ACTIONS(622), - [anon_sym_false] = ACTIONS(622), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(622), - [sym_super] = ACTIONS(622), - [sym_crate] = ACTIONS(622), - [sym_raw_string_literal] = ACTIONS(620), - [sym_float_literal] = ACTIONS(620), - [sym_block_comment] = ACTIONS(3), - }, - [625] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1499), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, [626] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), [sym__pattern] = STATE(2241), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71254,136 +74048,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [627] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1817), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(2459), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [628] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2326), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -71392,66 +74117,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, + [628] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_RBRACK] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [aux_sym__non_special_token_token1] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(654), + [anon_sym_as] = ACTIONS(654), + [anon_sym_async] = ACTIONS(654), + [anon_sym_await] = ACTIONS(654), + [anon_sym_break] = ACTIONS(654), + [anon_sym_const] = ACTIONS(654), + [anon_sym_continue] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_enum] = ACTIONS(654), + [anon_sym_fn] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_impl] = ACTIONS(654), + [anon_sym_let] = ACTIONS(654), + [anon_sym_loop] = ACTIONS(654), + [anon_sym_match] = ACTIONS(654), + [anon_sym_mod] = ACTIONS(654), + [anon_sym_pub] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_static] = ACTIONS(654), + [anon_sym_struct] = ACTIONS(654), + [anon_sym_trait] = ACTIONS(654), + [anon_sym_type] = ACTIONS(654), + [anon_sym_union] = ACTIONS(654), + [anon_sym_unsafe] = ACTIONS(654), + [anon_sym_use] = ACTIONS(654), + [anon_sym_where] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [sym_mutable_specifier] = ACTIONS(654), + [sym_integer_literal] = ACTIONS(652), + [aux_sym_string_literal_token1] = ACTIONS(652), + [sym_char_literal] = ACTIONS(652), + [anon_sym_true] = ACTIONS(654), + [anon_sym_false] = ACTIONS(654), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(654), + [sym_super] = ACTIONS(654), + [sym_crate] = ACTIONS(654), + [sym_raw_string_literal] = ACTIONS(652), + [sym_float_literal] = ACTIONS(652), + [sym_block_comment] = ACTIONS(3), + }, [629] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1831), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2209), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71461,66 +74255,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [630] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2207), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2201), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71530,66 +74324,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [631] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1880), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(2463), - [anon_sym_union] = ACTIONS(2463), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1761), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71599,66 +74393,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2465), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [632] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1880), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(2463), - [anon_sym_union] = ACTIONS(2463), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1934), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71668,66 +74462,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2467), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [633] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1491), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1479), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71737,66 +74531,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [634] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1853), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1782), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71806,66 +74600,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [635] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2077), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2248), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71875,135 +74669,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [636] = { - [sym_identifier] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_RPAREN] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_RBRACK] = ACTIONS(574), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_u8] = ACTIONS(576), - [anon_sym_i8] = ACTIONS(576), - [anon_sym_u16] = ACTIONS(576), - [anon_sym_i16] = ACTIONS(576), - [anon_sym_u32] = ACTIONS(576), - [anon_sym_i32] = ACTIONS(576), - [anon_sym_u64] = ACTIONS(576), - [anon_sym_i64] = ACTIONS(576), - [anon_sym_u128] = ACTIONS(576), - [anon_sym_i128] = ACTIONS(576), - [anon_sym_isize] = ACTIONS(576), - [anon_sym_usize] = ACTIONS(576), - [anon_sym_f32] = ACTIONS(576), - [anon_sym_f64] = ACTIONS(576), - [anon_sym_bool] = ACTIONS(576), - [anon_sym_str] = ACTIONS(576), - [anon_sym_char] = ACTIONS(576), - [aux_sym__non_special_token_token1] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(576), - [anon_sym_as] = ACTIONS(576), - [anon_sym_async] = ACTIONS(576), - [anon_sym_await] = ACTIONS(576), - [anon_sym_break] = ACTIONS(576), - [anon_sym_const] = ACTIONS(576), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_default] = ACTIONS(576), - [anon_sym_enum] = ACTIONS(576), - [anon_sym_fn] = ACTIONS(576), - [anon_sym_for] = ACTIONS(576), - [anon_sym_if] = ACTIONS(576), - [anon_sym_impl] = ACTIONS(576), - [anon_sym_let] = ACTIONS(576), - [anon_sym_loop] = ACTIONS(576), - [anon_sym_match] = ACTIONS(576), - [anon_sym_mod] = ACTIONS(576), - [anon_sym_pub] = ACTIONS(576), - [anon_sym_return] = ACTIONS(576), - [anon_sym_static] = ACTIONS(576), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_trait] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_union] = ACTIONS(576), - [anon_sym_unsafe] = ACTIONS(576), - [anon_sym_use] = ACTIONS(576), - [anon_sym_where] = ACTIONS(576), - [anon_sym_while] = ACTIONS(576), - [sym_mutable_specifier] = ACTIONS(576), - [sym_integer_literal] = ACTIONS(574), - [aux_sym_string_literal_token1] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [anon_sym_true] = ACTIONS(576), - [anon_sym_false] = ACTIONS(576), + [sym_identifier] = ACTIONS(2479), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_RPAREN] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_RBRACK] = ACTIONS(2481), + [anon_sym_DOLLAR] = ACTIONS(2481), + [anon_sym_u8] = ACTIONS(2479), + [anon_sym_i8] = ACTIONS(2479), + [anon_sym_u16] = ACTIONS(2479), + [anon_sym_i16] = ACTIONS(2479), + [anon_sym_u32] = ACTIONS(2479), + [anon_sym_i32] = ACTIONS(2479), + [anon_sym_u64] = ACTIONS(2479), + [anon_sym_i64] = ACTIONS(2479), + [anon_sym_u128] = ACTIONS(2479), + [anon_sym_i128] = ACTIONS(2479), + [anon_sym_isize] = ACTIONS(2479), + [anon_sym_usize] = ACTIONS(2479), + [anon_sym_f32] = ACTIONS(2479), + [anon_sym_f64] = ACTIONS(2479), + [anon_sym_bool] = ACTIONS(2479), + [anon_sym_str] = ACTIONS(2479), + [anon_sym_char] = ACTIONS(2479), + [aux_sym__non_special_token_token1] = ACTIONS(2479), + [anon_sym_SQUOTE] = ACTIONS(2479), + [anon_sym_as] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_default] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_fn] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_impl] = ACTIONS(2479), + [anon_sym_let] = ACTIONS(2479), + [anon_sym_loop] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_mod] = ACTIONS(2479), + [anon_sym_pub] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_trait] = ACTIONS(2479), + [anon_sym_type] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_unsafe] = ACTIONS(2479), + [anon_sym_use] = ACTIONS(2479), + [anon_sym_where] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [sym_mutable_specifier] = ACTIONS(2479), + [sym_integer_literal] = ACTIONS(2481), + [aux_sym_string_literal_token1] = ACTIONS(2481), + [sym_char_literal] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2479), + [anon_sym_false] = ACTIONS(2479), [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(576), - [sym_super] = ACTIONS(576), - [sym_crate] = ACTIONS(576), - [sym_raw_string_literal] = ACTIONS(574), - [sym_float_literal] = ACTIONS(574), + [sym_self] = ACTIONS(2479), + [sym_super] = ACTIONS(2479), + [sym_crate] = ACTIONS(2479), + [sym_raw_string_literal] = ACTIONS(2481), + [sym_float_literal] = ACTIONS(2481), [sym_block_comment] = ACTIONS(3), }, [637] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2229), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -72013,67 +74807,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [638] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2220), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1794), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(2497), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -72082,66 +74876,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [639] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2212), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1484), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1346), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1348), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -72151,448 +74945,593 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [640] = { - [sym_attribute_item] = STATE(640), - [aux_sym_enum_variant_list_repeat1] = STATE(640), - [sym_identifier] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(2471), - [anon_sym_RBRACK] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2471), - [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_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_for] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_loop] = ACTIONS(2469), - [anon_sym_match] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_union] = ACTIONS(2469), - [anon_sym_unsafe] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_POUND] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_COMMA] = ACTIONS(2471), - [anon_sym_ref] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(2471), - [anon_sym_COLON_COLON] = ACTIONS(2471), - [anon_sym__] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2471), - [sym_mutable_specifier] = ACTIONS(2469), - [anon_sym_DOT_DOT] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_PIPE] = ACTIONS(2471), - [anon_sym_yield] = ACTIONS(2469), - [anon_sym_move] = ACTIONS(2469), - [sym_integer_literal] = ACTIONS(2471), - [aux_sym_string_literal_token1] = ACTIONS(2471), - [sym_char_literal] = ACTIONS(2471), - [anon_sym_true] = ACTIONS(2469), - [anon_sym_false] = ACTIONS(2469), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2469), - [sym_super] = ACTIONS(2469), - [sym_crate] = ACTIONS(2469), - [sym_metavariable] = ACTIONS(2471), - [sym_raw_string_literal] = ACTIONS(2471), - [sym_float_literal] = ACTIONS(2471), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2238), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [641] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1433), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2210), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2478), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2480), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [642] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2288), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2329), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2482), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [643] = { - [sym_function_modifiers] = STATE(2390), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1143), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(2497), - [sym_array_type] = STATE(1136), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1136), - [sym_tuple_type] = STATE(1136), - [sym_unit_type] = STATE(1136), - [sym_generic_type] = STATE(937), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1136), - [sym_reference_type] = STATE(1136), - [sym_pointer_type] = STATE(1136), - [sym_empty_type] = STATE(1136), - [sym_abstract_type] = STATE(1136), - [sym_dynamic_type] = STATE(1136), - [sym_macro_invocation] = STATE(1136), - [sym_scoped_identifier] = STATE(2329), - [sym_scoped_type_identifier] = STATE(780), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2484), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_PLUS] = ACTIONS(2490), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_u8] = ACTIONS(2494), - [anon_sym_i8] = ACTIONS(2494), - [anon_sym_u16] = ACTIONS(2494), - [anon_sym_i16] = ACTIONS(2494), - [anon_sym_u32] = ACTIONS(2494), - [anon_sym_i32] = ACTIONS(2494), - [anon_sym_u64] = ACTIONS(2494), - [anon_sym_i64] = ACTIONS(2494), - [anon_sym_u128] = ACTIONS(2494), - [anon_sym_i128] = ACTIONS(2494), - [anon_sym_isize] = ACTIONS(2494), - [anon_sym_usize] = ACTIONS(2494), - [anon_sym_f32] = ACTIONS(2494), - [anon_sym_f64] = ACTIONS(2494), - [anon_sym_bool] = ACTIONS(2494), - [anon_sym_str] = ACTIONS(2494), - [anon_sym_char] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2496), - [anon_sym_fn] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2502), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(714), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_dyn] = ACTIONS(2510), - [sym_mutable_specifier] = ACTIONS(2512), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2514), - [sym_super] = ACTIONS(2514), - [sym_crate] = ACTIONS(2514), - [sym_metavariable] = ACTIONS(2516), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [644] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1433), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(2227), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2518), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [645] = { - [sym_function_modifiers] = STATE(2390), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1061), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(643), - [sym_array_type] = STATE(1136), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1136), - [sym_tuple_type] = STATE(1136), - [sym_unit_type] = STATE(1136), - [sym_generic_type] = STATE(937), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1136), - [sym_reference_type] = STATE(1136), - [sym_pointer_type] = STATE(1136), - [sym_empty_type] = STATE(1136), - [sym_abstract_type] = STATE(1136), - [sym_dynamic_type] = STATE(1136), - [sym_macro_invocation] = STATE(1136), - [sym_scoped_identifier] = STATE(2329), - [sym_scoped_type_identifier] = STATE(780), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2484), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_u8] = ACTIONS(2494), - [anon_sym_i8] = ACTIONS(2494), - [anon_sym_u16] = ACTIONS(2494), - [anon_sym_i16] = ACTIONS(2494), - [anon_sym_u32] = ACTIONS(2494), - [anon_sym_i32] = ACTIONS(2494), - [anon_sym_u64] = ACTIONS(2494), - [anon_sym_i64] = ACTIONS(2494), - [anon_sym_u128] = ACTIONS(2494), - [anon_sym_i128] = ACTIONS(2494), - [anon_sym_isize] = ACTIONS(2494), - [anon_sym_usize] = ACTIONS(2494), - [anon_sym_f32] = ACTIONS(2494), - [anon_sym_f64] = ACTIONS(2494), - [anon_sym_bool] = ACTIONS(2494), - [anon_sym_str] = ACTIONS(2494), - [anon_sym_char] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2496), - [anon_sym_fn] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2502), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(714), + [sym_identifier] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_RPAREN] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_RBRACK] = ACTIONS(2427), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_u8] = ACTIONS(2425), + [anon_sym_i8] = ACTIONS(2425), + [anon_sym_u16] = ACTIONS(2425), + [anon_sym_i16] = ACTIONS(2425), + [anon_sym_u32] = ACTIONS(2425), + [anon_sym_i32] = ACTIONS(2425), + [anon_sym_u64] = ACTIONS(2425), + [anon_sym_i64] = ACTIONS(2425), + [anon_sym_u128] = ACTIONS(2425), + [anon_sym_i128] = ACTIONS(2425), + [anon_sym_isize] = ACTIONS(2425), + [anon_sym_usize] = ACTIONS(2425), + [anon_sym_f32] = ACTIONS(2425), + [anon_sym_f64] = ACTIONS(2425), + [anon_sym_bool] = ACTIONS(2425), + [anon_sym_str] = ACTIONS(2425), + [anon_sym_char] = ACTIONS(2425), + [aux_sym__non_special_token_token1] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_await] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_mod] = ACTIONS(2425), + [anon_sym_pub] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_unsafe] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_where] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [sym_mutable_specifier] = ACTIONS(2425), + [sym_integer_literal] = ACTIONS(2427), + [aux_sym_string_literal_token1] = ACTIONS(2427), + [sym_char_literal] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [sym_line_comment] = ACTIONS(1097), + [sym_self] = ACTIONS(2425), + [sym_super] = ACTIONS(2425), + [sym_crate] = ACTIONS(2425), + [sym_raw_string_literal] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2427), + [sym_block_comment] = ACTIONS(3), + }, + [646] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1495), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_dyn] = ACTIONS(2510), - [sym_mutable_specifier] = ACTIONS(2522), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(2499), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2514), - [sym_super] = ACTIONS(2514), - [sym_crate] = ACTIONS(2514), - [sym_metavariable] = ACTIONS(2516), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [646] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1988), - [sym_bracketed_type] = STATE(2383), - [sym_qualified_type] = STATE(2348), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [647] = { + [sym_bracketed_type] = STATE(2493), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1973), + [sym_const_block] = STATE(1469), + [sym__pattern] = STATE(1480), + [sym_tuple_pattern] = STATE(1469), + [sym_slice_pattern] = STATE(1469), + [sym_tuple_struct_pattern] = STATE(1469), + [sym_struct_pattern] = STATE(1469), + [sym_remaining_field_pattern] = STATE(1469), + [sym_mut_pattern] = STATE(1469), + [sym_range_pattern] = STATE(1469), + [sym_ref_pattern] = STATE(1469), + [sym_captured_pattern] = STATE(1469), + [sym_reference_pattern] = STATE(1469), + [sym_or_pattern] = STATE(1469), + [sym__literal_pattern] = STATE(1449), + [sym_negative_literal] = STATE(1430), + [sym_string_literal] = STATE(1430), + [sym_boolean_literal] = STATE(1430), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1348), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [648] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1440), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(2501), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(908), [anon_sym_i8] = ACTIONS(908), @@ -72611,7 +75550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), @@ -72626,107 +75565,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(916), [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2503), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), + [sym_self] = ACTIONS(2505), [sym_super] = ACTIONS(922), [sym_crate] = ACTIONS(922), [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [647] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1859), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [649] = { + [sym_attribute_item] = STATE(649), + [aux_sym_enum_variant_list_repeat1] = STATE(649), + [sym_identifier] = ACTIONS(2507), + [anon_sym_LPAREN] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2509), + [anon_sym_RBRACK] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2509), + [anon_sym_u8] = ACTIONS(2507), + [anon_sym_i8] = ACTIONS(2507), + [anon_sym_u16] = ACTIONS(2507), + [anon_sym_i16] = ACTIONS(2507), + [anon_sym_u32] = ACTIONS(2507), + [anon_sym_i32] = ACTIONS(2507), + [anon_sym_u64] = ACTIONS(2507), + [anon_sym_i64] = ACTIONS(2507), + [anon_sym_u128] = ACTIONS(2507), + [anon_sym_i128] = ACTIONS(2507), + [anon_sym_isize] = ACTIONS(2507), + [anon_sym_usize] = ACTIONS(2507), + [anon_sym_f32] = ACTIONS(2507), + [anon_sym_f64] = ACTIONS(2507), + [anon_sym_bool] = ACTIONS(2507), + [anon_sym_str] = ACTIONS(2507), + [anon_sym_char] = ACTIONS(2507), + [anon_sym_SQUOTE] = ACTIONS(2507), + [anon_sym_async] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_default] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_loop] = ACTIONS(2507), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_union] = ACTIONS(2507), + [anon_sym_unsafe] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_POUND] = ACTIONS(2511), + [anon_sym_BANG] = ACTIONS(2509), + [anon_sym_COMMA] = ACTIONS(2509), + [anon_sym_ref] = ACTIONS(2507), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym__] = ACTIONS(2507), + [anon_sym_AMP] = ACTIONS(2509), + [sym_mutable_specifier] = ACTIONS(2507), + [anon_sym_DOT_DOT] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_yield] = ACTIONS(2507), + [anon_sym_move] = ACTIONS(2507), + [sym_integer_literal] = ACTIONS(2509), + [aux_sym_string_literal_token1] = ACTIONS(2509), + [sym_char_literal] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2507), + [sym_super] = ACTIONS(2507), + [sym_crate] = ACTIONS(2507), + [sym_metavariable] = ACTIONS(2509), + [sym_raw_string_literal] = ACTIONS(2509), + [sym_float_literal] = ACTIONS(2509), + [sym_block_comment] = ACTIONS(3), + }, + [650] = { + [sym_function_modifiers] = STATE(2431), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(963), + [sym_bracketed_type] = STATE(2540), + [sym_lifetime] = STATE(2421), + [sym_array_type] = STATE(1143), + [sym_for_lifetimes] = STATE(1230), + [sym_function_type] = STATE(1143), + [sym_tuple_type] = STATE(1143), + [sym_unit_type] = STATE(1143), + [sym_generic_type] = STATE(834), + [sym_generic_type_with_turbofish] = STATE(2541), + [sym_bounded_type] = STATE(1143), + [sym_reference_type] = STATE(1143), + [sym_pointer_type] = STATE(1143), + [sym_empty_type] = STATE(1143), + [sym_abstract_type] = STATE(1143), + [sym_dynamic_type] = STATE(1143), + [sym_macro_invocation] = STATE(1143), + [sym_scoped_identifier] = STATE(2360), + [sym_scoped_type_identifier] = STATE(785), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2514), + [anon_sym_LPAREN] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2520), + [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_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), + [anon_sym_default] = ACTIONS(2526), + [anon_sym_fn] = ACTIONS(2528), [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), + [anon_sym_impl] = ACTIONS(2530), + [anon_sym_union] = ACTIONS(2532), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), + [anon_sym_BANG] = ACTIONS(2534), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(2536), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_dyn] = ACTIONS(2540), + [sym_mutable_specifier] = ACTIONS(2542), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), + [sym_self] = ACTIONS(2544), + [sym_super] = ACTIONS(2544), + [sym_crate] = ACTIONS(2544), + [sym_metavariable] = ACTIONS(2546), [sym_block_comment] = ACTIONS(3), }, - [648] = { - [sym_function_modifiers] = STATE(2420), - [sym_type_parameters] = STATE(712), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1706), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1710), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1539), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2526), + [651] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2239), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(2501), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(908), [anon_sym_i8] = ACTIONS(908), @@ -72745,7 +75754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), @@ -72756,10 +75765,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(916), [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2548), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(922), [sym_super] = ACTIONS(922), @@ -72767,32 +75777,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [649] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2298), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(642), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [652] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1440), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(2501), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(908), [anon_sym_i8] = ACTIONS(908), @@ -72811,7 +75822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2520), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), @@ -72826,7 +75837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(916), [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2530), + [sym_mutable_specifier] = ACTIONS(2550), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(922), [sym_super] = ACTIONS(922), @@ -72834,99 +75845,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [650] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2115), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [653] = { + [sym_function_modifiers] = STATE(2431), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1096), + [sym_bracketed_type] = STATE(2540), + [sym_lifetime] = STATE(650), + [sym_array_type] = STATE(1143), + [sym_for_lifetimes] = STATE(1230), + [sym_function_type] = STATE(1143), + [sym_tuple_type] = STATE(1143), + [sym_unit_type] = STATE(1143), + [sym_generic_type] = STATE(834), + [sym_generic_type_with_turbofish] = STATE(2541), + [sym_bounded_type] = STATE(1143), + [sym_reference_type] = STATE(1143), + [sym_pointer_type] = STATE(1143), + [sym_empty_type] = STATE(1143), + [sym_abstract_type] = STATE(1143), + [sym_dynamic_type] = STATE(1143), + [sym_macro_invocation] = STATE(1143), + [sym_scoped_identifier] = STATE(2360), + [sym_scoped_type_identifier] = STATE(785), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2514), + [anon_sym_LPAREN] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2518), + [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_SQUOTE] = ACTIONS(2552), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), + [anon_sym_default] = ACTIONS(2526), + [anon_sym_fn] = ACTIONS(2528), [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), + [anon_sym_impl] = ACTIONS(2530), + [anon_sym_union] = ACTIONS(2532), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), + [anon_sym_BANG] = ACTIONS(2534), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(2536), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_dyn] = ACTIONS(2540), + [sym_mutable_specifier] = ACTIONS(2554), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), + [sym_self] = ACTIONS(2544), + [sym_super] = ACTIONS(2544), + [sym_crate] = ACTIONS(2544), + [sym_metavariable] = ACTIONS(2546), [sym_block_comment] = ACTIONS(3), }, - [651] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1894), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [654] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1834), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2534), + [anon_sym_RPAREN] = ACTIONS(2556), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(908), @@ -72946,7 +75957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), @@ -72968,32 +75979,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [652] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2115), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [655] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(652), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2536), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(908), @@ -73013,7 +76023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2552), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), @@ -73028,6 +76038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(916), [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2558), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(922), [sym_super] = ACTIONS(922), @@ -73035,32 +76046,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [653] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2115), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), + [656] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1909), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2538), + [anon_sym_RPAREN] = ACTIONS(2560), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(908), @@ -73080,7 +76091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), @@ -73102,31 +76113,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [654] = { - [sym_function_modifiers] = STATE(2420), - [sym_type_parameters] = STATE(696), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1692), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1648), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1522), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2540), + [657] = { + [sym_function_modifiers] = STATE(2463), + [sym_type_parameters] = STATE(694), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1698), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1701), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1536), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2562), [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), @@ -73147,7 +76158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(908), [anon_sym_str] = ACTIONS(908), [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(910), @@ -73157,4170 +76168,625 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [655] = { - [sym_function_modifiers] = STATE(2420), - [sym_type_parameters] = STATE(693), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1682), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1678), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1517), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [656] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1429), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(644), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2544), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [657] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2115), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [658] = { - [sym_function_modifiers] = STATE(2420), - [sym_type_parameters] = STATE(724), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1726), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1698), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1545), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2288), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [129] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1729), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [258] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1923), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [387] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2053), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [516] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1660), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [645] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, - anon_sym_LPAREN, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, - anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, - anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, - anon_sym_COLON_COLON, - ACTIONS(2508), 1, - anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, - sym_metavariable, - STATE(780), 1, - sym_scoped_type_identifier, - STATE(937), 1, - sym_generic_type, - STATE(1121), 1, - sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, - sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, - sym_bracketed_type, - STATE(2493), 1, - sym_generic_type_with_turbofish, - STATE(2497), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2514), 3, - sym_self, - sym_super, - sym_crate, - STATE(1136), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2494), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [774] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1713), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [903] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1432), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1032] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1711), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1161] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2091), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1290] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1426), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1419] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1670), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1548] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1413), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1677] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2032), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1806] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1936), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1935] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2133), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [2064] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1941), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [2193] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1863), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [2322] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2103), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [2451] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2052), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [2580] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1694), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [2709] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1894), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [2838] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1689), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [2967] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1909), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [3096] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1888), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [3225] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1424), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [3354] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, - anon_sym_LPAREN, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, - anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, - anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, - anon_sym_COLON_COLON, - ACTIONS(2508), 1, - anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, - sym_metavariable, - STATE(780), 1, - sym_scoped_type_identifier, - STATE(937), 1, - sym_generic_type, - STATE(1145), 1, - sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, - sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, - sym_bracketed_type, - STATE(2493), 1, - sym_generic_type_with_turbofish, - STATE(2497), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2514), 3, - sym_self, - sym_super, - sym_crate, - STATE(1136), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2494), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [3483] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2137), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [3612] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, - anon_sym_LPAREN, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, - anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, - anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, - anon_sym_COLON_COLON, - ACTIONS(2508), 1, - anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, - sym_metavariable, - STATE(780), 1, - sym_scoped_type_identifier, - STATE(937), 1, - sym_generic_type, - STATE(1071), 1, - sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, - sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, - sym_bracketed_type, - STATE(2493), 1, - sym_generic_type_with_turbofish, - STATE(2497), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2514), 3, - sym_self, - sym_super, - sym_crate, - STATE(1136), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2494), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [3741] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, - anon_sym_LPAREN, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, - anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, - anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, - anon_sym_COLON_COLON, - ACTIONS(2508), 1, - anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, - sym_metavariable, - STATE(780), 1, - sym_scoped_type_identifier, - STATE(937), 1, - sym_generic_type, - STATE(1128), 1, - sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, - sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, - sym_bracketed_type, - STATE(2493), 1, - sym_generic_type_with_turbofish, - STATE(2497), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2514), 3, - sym_self, - sym_super, - sym_crate, - STATE(1136), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2494), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [3870] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2185), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [3999] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2115), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [4128] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1410), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [4257] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, - anon_sym_LPAREN, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, - anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, - anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, - anon_sym_COLON_COLON, - ACTIONS(2508), 1, - anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, - sym_metavariable, - STATE(780), 1, - sym_scoped_type_identifier, - STATE(937), 1, - sym_generic_type, - STATE(1143), 1, - sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, - sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, - sym_bracketed_type, - STATE(2493), 1, - sym_generic_type_with_turbofish, - STATE(2497), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2514), 3, - sym_self, - sym_super, - sym_crate, - STATE(1136), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2494), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [4386] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2550), 1, - sym_identifier, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1535), 1, - sym_scoped_type_identifier, - STATE(1728), 1, - sym_generic_type, - STATE(1730), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [4515] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, - anon_sym_LPAREN, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, - anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, - anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, - anon_sym_COLON_COLON, - ACTIONS(2508), 1, - anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, - sym_metavariable, - STATE(780), 1, - sym_scoped_type_identifier, - STATE(937), 1, - sym_generic_type, - STATE(1125), 1, - sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, - sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, - sym_bracketed_type, - STATE(2493), 1, - sym_generic_type_with_turbofish, - STATE(2497), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2514), 3, - sym_self, - sym_super, - sym_crate, - STATE(1136), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2494), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [4644] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2028), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [4773] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2552), 1, - sym_identifier, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1516), 1, - sym_scoped_type_identifier, - STATE(1676), 1, - sym_generic_type, - STATE(1735), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [4902] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1599), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [5031] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2284), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [5160] = 32, + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2564), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, + [658] = { + [sym_function_modifiers] = STATE(2463), + [sym_type_parameters] = STATE(718), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1683), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1541), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2566), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2564), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, + [659] = { + [sym_function_modifiers] = STATE(2463), + [sym_type_parameters] = STATE(679), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1695), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1539), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2568), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2564), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, + [660] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2155), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, + [661] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2025), + [sym_bracketed_type] = STATE(2428), + [sym_qualified_type] = STATE(2406), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, + [662] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2155), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, + [663] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2155), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2574), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, + [664] = { + [sym_function_modifiers] = STATE(2463), + [sym_type_parameters] = STATE(754), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(1751), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1696), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1557), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2576), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2564), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, + [665] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2188), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(651), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2552), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2578), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, + [666] = { + [sym_function_modifiers] = STATE(2463), + [sym_extern_modifier] = STATE(1584), + [sym__type] = STATE(2155), + [sym_bracketed_type] = STATE(2428), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(1433), + [sym_for_lifetimes] = STATE(1228), + [sym_function_type] = STATE(1433), + [sym_tuple_type] = STATE(1433), + [sym_unit_type] = STATE(1433), + [sym_generic_type] = STATE(1406), + [sym_generic_type_with_turbofish] = STATE(2429), + [sym_bounded_type] = STATE(1433), + [sym_reference_type] = STATE(1433), + [sym_pointer_type] = STATE(1433), + [sym_empty_type] = STATE(1433), + [sym_abstract_type] = STATE(1433), + [sym_dynamic_type] = STATE(1433), + [sym_macro_invocation] = STATE(1433), + [sym_scoped_identifier] = STATE(2345), + [sym_scoped_type_identifier] = STATE(1374), + [aux_sym_function_modifiers_repeat1] = STATE(1584), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77351,32 +76817,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1605), 1, + STATE(2315), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77387,7 +76853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77417,7 +76883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5289] = 32, + [129] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77448,32 +76914,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1902), 1, + STATE(2237), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77484,7 +76950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77514,7 +76980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5418] = 32, + [258] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77545,32 +77011,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1423), 1, + STATE(1943), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77581,7 +77047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77611,7 +77077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5547] = 32, + [387] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77642,32 +77108,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1420), 1, + STATE(2233), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77678,7 +77144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77708,7 +77174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5676] = 32, + [516] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77739,32 +77205,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2142), 1, + STATE(2124), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77775,7 +77241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77805,171 +77271,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5805] = 32, + [645] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - ACTIONS(2484), 1, + ACTIONS(2514), 1, sym_identifier, - ACTIONS(2486), 1, + ACTIONS(2516), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(2518), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, + ACTIONS(2522), 1, anon_sym_STAR, - ACTIONS(2496), 1, + ACTIONS(2526), 1, anon_sym_default, - ACTIONS(2498), 1, + ACTIONS(2528), 1, anon_sym_fn, - ACTIONS(2500), 1, + ACTIONS(2530), 1, anon_sym_impl, - ACTIONS(2502), 1, + ACTIONS(2532), 1, anon_sym_union, - ACTIONS(2504), 1, + ACTIONS(2534), 1, anon_sym_BANG, - ACTIONS(2506), 1, + ACTIONS(2536), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 1, + ACTIONS(2538), 1, anon_sym_AMP, - ACTIONS(2510), 1, + ACTIONS(2540), 1, anon_sym_dyn, - ACTIONS(2516), 1, + ACTIONS(2546), 1, sym_metavariable, - STATE(780), 1, + STATE(785), 1, sym_scoped_type_identifier, - STATE(937), 1, + STATE(834), 1, sym_generic_type, - STATE(1123), 1, + STATE(949), 1, sym__type, - STATE(1215), 1, + STATE(1230), 1, sym_for_lifetimes, - STATE(2329), 1, + STATE(2360), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, - sym_bracketed_type, - STATE(2493), 1, - sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2421), 1, sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2514), 3, - sym_self, - sym_super, - sym_crate, - STATE(1136), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2494), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [5934] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1651), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, + STATE(2431), 1, + sym_function_modifiers, + STATE(2540), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2541), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2544), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1143), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77981,7 +77350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2524), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77999,7 +77368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6063] = 32, + [774] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78030,32 +77399,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1433), 1, + STATE(2139), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78066,7 +77435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78096,7 +77465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6192] = 32, + [903] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78127,32 +77496,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2075), 1, + STATE(1423), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78163,7 +77532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78193,7 +77562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6321] = 32, + [1032] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78224,32 +77593,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2248), 1, + STATE(1674), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78260,7 +77629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78290,7 +77659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6450] = 32, + [1161] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78321,32 +77690,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1430), 1, + STATE(1669), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78357,7 +77726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78387,74 +77756,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6579] = 32, + [1290] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - ACTIONS(2484), 1, + ACTIONS(2514), 1, sym_identifier, - ACTIONS(2486), 1, + ACTIONS(2516), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(2518), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, + ACTIONS(2522), 1, anon_sym_STAR, - ACTIONS(2496), 1, + ACTIONS(2526), 1, anon_sym_default, - ACTIONS(2498), 1, + ACTIONS(2528), 1, anon_sym_fn, - ACTIONS(2500), 1, + ACTIONS(2530), 1, anon_sym_impl, - ACTIONS(2502), 1, + ACTIONS(2532), 1, anon_sym_union, - ACTIONS(2504), 1, + ACTIONS(2534), 1, anon_sym_BANG, - ACTIONS(2506), 1, + ACTIONS(2536), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 1, + ACTIONS(2538), 1, anon_sym_AMP, - ACTIONS(2510), 1, + ACTIONS(2540), 1, anon_sym_dyn, - ACTIONS(2516), 1, + ACTIONS(2546), 1, sym_metavariable, - STATE(780), 1, + STATE(785), 1, sym_scoped_type_identifier, - STATE(937), 1, + STATE(834), 1, sym_generic_type, - STATE(1109), 1, + STATE(963), 1, sym__type, - STATE(1215), 1, + STATE(1230), 1, sym_for_lifetimes, - STATE(2329), 1, + STATE(2360), 1, sym_scoped_identifier, - STATE(2390), 1, + STATE(2421), 1, + sym_lifetime, + STATE(2431), 1, sym_function_modifiers, - STATE(2492), 1, + STATE(2540), 1, sym_bracketed_type, - STATE(2493), 1, + STATE(2541), 1, sym_generic_type_with_turbofish, - STATE(2497), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(2544), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1143), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78466,7 +77835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(2524), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78484,7 +77853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6708] = 32, + [1419] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78515,32 +77884,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1686), 1, + STATE(1746), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78551,7 +77920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78581,7 +77950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6837] = 32, + [1548] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78612,32 +77981,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - ACTIONS(2554), 1, + ACTIONS(2582), 1, sym_identifier, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1549), 1, + STATE(1535), 1, sym_scoped_type_identifier, - STATE(1719), 1, + STATE(1726), 1, sym__type, - STATE(1722), 1, + STATE(1728), 1, sym_generic_type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78648,7 +78017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78678,7 +78047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6966] = 32, + [1677] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78709,32 +78078,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2278), 1, - sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2372), 1, + sym__type, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78745,7 +78114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78775,7 +78144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7095] = 32, + [1806] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78806,32 +78175,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1685), 1, + STATE(1678), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78842,7 +78211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78872,7 +78241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7224] = 32, + [1935] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78903,32 +78272,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2107), 1, + STATE(2143), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78939,7 +78308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78969,74 +78338,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7353] = 32, + [2064] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, + ACTIONS(924), 1, sym_metavariable, - STATE(780), 1, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(937), 1, + STATE(1406), 1, sym_generic_type, - STATE(1141), 1, + STATE(2121), 1, sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2493), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2460), 1, sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79048,7 +78417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79066,7 +78435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7482] = 32, + [2193] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79097,32 +78466,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2089), 1, + STATE(1668), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79133,7 +78502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79163,7 +78532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7611] = 32, + [2322] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79194,32 +78563,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1643), 1, + STATE(2335), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79230,7 +78599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79260,7 +78629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7740] = 32, + [2451] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79291,32 +78660,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2114), 1, + STATE(1740), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79327,7 +78696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79357,74 +78726,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7869] = 32, + [2580] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - ACTIONS(2484), 1, + ACTIONS(2514), 1, sym_identifier, - ACTIONS(2486), 1, + ACTIONS(2516), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(2518), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, + ACTIONS(2522), 1, anon_sym_STAR, - ACTIONS(2496), 1, + ACTIONS(2526), 1, anon_sym_default, - ACTIONS(2498), 1, + ACTIONS(2528), 1, anon_sym_fn, - ACTIONS(2500), 1, + ACTIONS(2530), 1, anon_sym_impl, - ACTIONS(2502), 1, + ACTIONS(2532), 1, anon_sym_union, - ACTIONS(2504), 1, + ACTIONS(2534), 1, anon_sym_BANG, - ACTIONS(2506), 1, + ACTIONS(2536), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 1, + ACTIONS(2538), 1, anon_sym_AMP, - ACTIONS(2510), 1, + ACTIONS(2540), 1, anon_sym_dyn, - ACTIONS(2516), 1, + ACTIONS(2546), 1, sym_metavariable, - STATE(780), 1, + STATE(785), 1, sym_scoped_type_identifier, - STATE(937), 1, + STATE(834), 1, sym_generic_type, - STATE(1107), 1, + STATE(1091), 1, sym__type, - STATE(1215), 1, + STATE(1230), 1, sym_for_lifetimes, - STATE(2329), 1, + STATE(2360), 1, sym_scoped_identifier, - STATE(2390), 1, + STATE(2421), 1, + sym_lifetime, + STATE(2431), 1, sym_function_modifiers, - STATE(2492), 1, + STATE(2540), 1, sym_bracketed_type, - STATE(2493), 1, + STATE(2541), 1, sym_generic_type_with_turbofish, - STATE(2497), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(2544), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1143), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79436,7 +78805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(2524), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79454,74 +78823,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7998] = 32, + [2709] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(2498), 1, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1908), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [2838] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(2500), 1, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(2502), 1, - anon_sym_union, - ACTIONS(2504), 1, + ACTIONS(710), 1, anon_sym_BANG, - ACTIONS(2506), 1, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, + ACTIONS(924), 1, sym_metavariable, - STATE(780), 1, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(937), 1, + STATE(1406), 1, sym_generic_type, - STATE(1139), 1, + STATE(2099), 1, sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2493), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2460), 1, sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79533,7 +78999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79551,7 +79017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8127] = 32, + [2967] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79582,32 +79048,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1903), 1, + STATE(1448), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79618,7 +79084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79648,7 +79114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8256] = 32, + [3096] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79679,32 +79145,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2177), 1, + STATE(1670), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79715,7 +79181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79745,7 +79211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8385] = 32, + [3225] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79776,32 +79242,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2556), 1, + ACTIONS(2357), 1, sym_identifier, - STATE(1214), 1, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, sym_for_lifetimes, - STATE(1551), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1667), 1, - sym__type, - STATE(1733), 1, + STATE(1406), 1, sym_generic_type, - STATE(2320), 1, + STATE(1749), 1, + sym__type, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79812,7 +79278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79842,7 +79308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8514] = 32, + [3354] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79873,32 +79339,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1697), 1, + STATE(2147), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79909,7 +79375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79939,7 +79405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8643] = 32, + [3483] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79970,32 +79436,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1534), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1664), 1, sym_generic_type, STATE(1731), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80006,7 +79472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80036,7 +79502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8772] = 32, + [3612] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80067,32 +79533,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1647), 1, + STATE(2029), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80103,7 +79569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80133,74 +79599,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8901] = 32, + [3741] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - ACTIONS(2484), 1, + ACTIONS(2514), 1, sym_identifier, - ACTIONS(2486), 1, + ACTIONS(2516), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(2518), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, + ACTIONS(2522), 1, anon_sym_STAR, - ACTIONS(2496), 1, + ACTIONS(2526), 1, anon_sym_default, - ACTIONS(2498), 1, + ACTIONS(2528), 1, anon_sym_fn, - ACTIONS(2500), 1, + ACTIONS(2530), 1, anon_sym_impl, - ACTIONS(2502), 1, + ACTIONS(2532), 1, anon_sym_union, - ACTIONS(2504), 1, + ACTIONS(2534), 1, anon_sym_BANG, - ACTIONS(2506), 1, + ACTIONS(2536), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 1, + ACTIONS(2538), 1, anon_sym_AMP, - ACTIONS(2510), 1, + ACTIONS(2540), 1, anon_sym_dyn, - ACTIONS(2516), 1, + ACTIONS(2546), 1, sym_metavariable, - STATE(780), 1, + STATE(785), 1, sym_scoped_type_identifier, - STATE(937), 1, + STATE(834), 1, sym_generic_type, - STATE(1106), 1, + STATE(994), 1, sym__type, - STATE(1215), 1, + STATE(1230), 1, sym_for_lifetimes, - STATE(2329), 1, + STATE(2360), 1, sym_scoped_identifier, - STATE(2390), 1, + STATE(2421), 1, + sym_lifetime, + STATE(2431), 1, sym_function_modifiers, - STATE(2492), 1, + STATE(2540), 1, sym_bracketed_type, - STATE(2493), 1, + STATE(2541), 1, sym_generic_type_with_turbofish, - STATE(2497), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(2544), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1143), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80212,7 +79678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(2524), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80230,7 +79696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9030] = 32, + [3870] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80261,32 +79727,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1409), 1, + STATE(2130), 1, sym__type, - STATE(1422), 1, - sym_lifetime, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2420), 1, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80297,7 +79763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80327,7 +79793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9159] = 32, + [3999] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80358,32 +79824,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1993), 1, - sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2354), 1, + sym__type, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80394,7 +79860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80424,7 +79890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9288] = 32, + [4128] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80455,32 +79921,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2156), 1, + STATE(2239), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80491,7 +79957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80521,7 +79987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9417] = 32, + [4257] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80552,32 +80018,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1409), 1, + STATE(1921), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80588,7 +80054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80618,7 +80084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9546] = 32, + [4386] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80649,32 +80115,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2291), 1, + STATE(1816), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80685,7 +80151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80715,74 +80181,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9675] = 32, + [4515] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(2514), 1, + sym_identifier, + ACTIONS(2516), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(2518), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2526), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(2528), 1, + anon_sym_fn, + ACTIONS(2530), 1, + anon_sym_impl, + ACTIONS(2532), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(2534), 1, + anon_sym_BANG, + ACTIONS(2536), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(2538), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(2540), 1, + anon_sym_dyn, + ACTIONS(2546), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, + STATE(785), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(834), 1, sym_generic_type, - STATE(2025), 1, + STATE(965), 1, sym__type, - STATE(2320), 1, + STATE(1230), 1, + sym_for_lifetimes, + STATE(2360), 1, sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2421), 1, sym_lifetime, - STATE(2420), 1, + STATE(2431), 1, sym_function_modifiers, + STATE(2540), 1, + sym_bracketed_type, + STATE(2541), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2544), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1143), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80794,7 +80260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2524), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80812,7 +80278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9804] = 32, + [4644] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80843,32 +80309,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1734), 1, + STATE(1636), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80879,7 +80345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80909,7 +80375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9933] = 32, + [4773] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80940,32 +80406,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2029), 1, + STATE(1690), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80976,7 +80442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81006,173 +80472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10062] = 33, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2558), 1, - sym_self, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(1426), 1, - sym__type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(922), 2, - sym_super, - sym_crate, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [10193] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1834), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1836), 42, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [10264] = 32, + [4902] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81203,32 +80503,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2039), 1, + STATE(1722), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81239,7 +80539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81269,7 +80569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10393] = 32, + [5031] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81300,32 +80600,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1666), 1, + STATE(1422), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81336,7 +80636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81366,74 +80666,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10522] = 32, + [5160] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(2514), 1, + sym_identifier, + ACTIONS(2516), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(2518), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2526), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(2528), 1, + anon_sym_fn, + ACTIONS(2530), 1, + anon_sym_impl, + ACTIONS(2532), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(2534), 1, + anon_sym_BANG, + ACTIONS(2536), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(2538), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(2540), 1, + anon_sym_dyn, + ACTIONS(2546), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, + STATE(785), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(834), 1, sym_generic_type, - STATE(1669), 1, + STATE(986), 1, sym__type, - STATE(2320), 1, + STATE(1230), 1, + sym_for_lifetimes, + STATE(2360), 1, sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2421), 1, sym_lifetime, - STATE(2420), 1, + STATE(2431), 1, sym_function_modifiers, + STATE(2540), 1, + sym_bracketed_type, + STATE(2541), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2544), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1143), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81445,7 +80745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2524), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81463,7 +80763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10651] = 32, + [5289] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81494,32 +80794,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2123), 1, + STATE(1422), 1, sym__type, - STATE(2320), 1, + STATE(1432), 1, + sym_lifetime, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81530,7 +80830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81560,7 +80860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10780] = 32, + [5418] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81591,32 +80891,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2121), 1, + STATE(1963), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81627,7 +80927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81657,7 +80957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10909] = 32, + [5547] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81688,32 +80988,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2183), 1, + STATE(1721), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81724,7 +81024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81754,7 +81054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11038] = 32, + [5676] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81785,32 +81085,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1652), 1, + STATE(2060), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81821,7 +81121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81851,7 +81151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11167] = 32, + [5805] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81882,32 +81182,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1672), 1, + STATE(1699), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81918,7 +81218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81948,74 +81248,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11296] = 32, + [5934] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(2514), 1, + sym_identifier, + ACTIONS(2516), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(2518), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2526), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(2528), 1, + anon_sym_fn, + ACTIONS(2530), 1, + anon_sym_impl, + ACTIONS(2532), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(2534), 1, + anon_sym_BANG, + ACTIONS(2536), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(2538), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(2540), 1, + anon_sym_dyn, + ACTIONS(2546), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, + STATE(785), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(834), 1, sym_generic_type, - STATE(1677), 1, + STATE(1124), 1, sym__type, - STATE(2320), 1, + STATE(1230), 1, + sym_for_lifetimes, + STATE(2360), 1, sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2421), 1, sym_lifetime, - STATE(2420), 1, + STATE(2431), 1, sym_function_modifiers, + STATE(2540), 1, + sym_bracketed_type, + STATE(2541), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2544), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1143), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82027,7 +81327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2524), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82045,7 +81345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11425] = 32, + [6063] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82076,32 +81376,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1646), 1, + STATE(1743), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -82112,7 +81412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82142,171 +81442,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11554] = 32, + [6192] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(2514), 1, + sym_identifier, + ACTIONS(2516), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(2518), 1, anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(918), 1, - anon_sym_AMP, - ACTIONS(924), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2324), 1, - sym__type, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [11683] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(2522), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(2526), 1, + anon_sym_default, + ACTIONS(2528), 1, anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, + ACTIONS(2530), 1, anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, + ACTIONS(2532), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(2534), 1, + anon_sym_BANG, + ACTIONS(2536), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(2538), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(2540), 1, + anon_sym_dyn, + ACTIONS(2546), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, + STATE(785), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(834), 1, sym_generic_type, - STATE(1691), 1, + STATE(992), 1, sym__type, - STATE(2320), 1, + STATE(1230), 1, + sym_for_lifetimes, + STATE(2360), 1, sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2421), 1, sym_lifetime, - STATE(2420), 1, + STATE(2431), 1, sym_function_modifiers, + STATE(2540), 1, + sym_bracketed_type, + STATE(2541), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2544), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1143), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82318,7 +81521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2524), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82336,7 +81539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11812] = 32, + [6321] = 33, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82367,43 +81570,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + ACTIONS(2586), 1, + sym_self, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2085), 1, + STATE(1424), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + ACTIONS(922), 2, + sym_super, + sym_crate, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82433,7 +81637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11941] = 32, + [6452] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82464,32 +81668,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1662), 1, + STATE(2265), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -82500,7 +81704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82530,7 +81734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12070] = 32, + [6581] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82561,32 +81765,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + ACTIONS(2588), 1, + sym_identifier, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1545), 1, sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2316), 1, + STATE(1736), 1, sym__type, - STATE(2320), 1, + STATE(1737), 1, + sym_generic_type, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -82597,7 +81801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82627,7 +81831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12199] = 32, + [6710] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82658,32 +81862,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2199), 1, + STATE(1738), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -82694,7 +81898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82724,7 +81928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12328] = 32, + [6839] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82755,32 +81959,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1800), 1, + STATE(2262), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -82791,7 +81995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82821,74 +82025,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12457] = 32, + [6968] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(2514), 1, + sym_identifier, + ACTIONS(2516), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(2518), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2526), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(2528), 1, + anon_sym_fn, + ACTIONS(2530), 1, + anon_sym_impl, + ACTIONS(2532), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(2534), 1, + anon_sym_BANG, + ACTIONS(2536), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(2538), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(2540), 1, + anon_sym_dyn, + ACTIONS(2546), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, + STATE(785), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(834), 1, sym_generic_type, - STATE(1801), 1, + STATE(864), 1, sym__type, - STATE(2320), 1, + STATE(1230), 1, + sym_for_lifetimes, + STATE(2360), 1, sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2421), 1, sym_lifetime, - STATE(2420), 1, + STATE(2431), 1, sym_function_modifiers, + STATE(2540), 1, + sym_bracketed_type, + STATE(2541), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2544), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1143), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82900,7 +82104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2524), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82918,7 +82122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12586] = 32, + [7097] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82949,32 +82153,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1725), 1, + STATE(1850), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -82985,7 +82189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83015,7 +82219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12715] = 32, + [7226] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83046,32 +82250,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2238), 1, + STATE(2260), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -83082,7 +82286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83112,7 +82316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12844] = 32, + [7355] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83143,32 +82347,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1804), 1, + STATE(1440), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -83179,7 +82383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83209,7 +82413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12973] = 32, + [7484] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83240,32 +82444,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1807), 1, + STATE(1741), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -83276,7 +82480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83306,7 +82510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13102] = 32, + [7613] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83337,32 +82541,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2034), 1, + STATE(1730), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -83373,7 +82577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83403,7 +82607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13231] = 32, + [7742] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83434,32 +82638,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1434), 1, + STATE(1744), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -83470,7 +82674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83500,7 +82704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13360] = 32, + [7871] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83531,32 +82735,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1718), 1, + STATE(2271), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -83567,7 +82771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83597,7 +82801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13489] = 32, + [8000] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83628,32 +82832,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1673), 1, + STATE(1732), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -83664,7 +82868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83694,7 +82898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13618] = 32, + [8129] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83725,32 +82929,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1717), 1, + STATE(1940), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -83761,7 +82965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83791,7 +82995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13747] = 32, + [8258] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83822,32 +83026,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(2235), 1, + STATE(1909), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -83858,7 +83062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83888,7 +83092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13876] = 32, + [8387] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83919,32 +83123,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1681), 1, + STATE(1676), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -83955,7 +83159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83985,7 +83189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14005] = 32, + [8516] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -84016,32 +83220,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2357), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1374), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1406), 1, sym_generic_type, - STATE(1967), 1, + STATE(2193), 1, sym__type, - STATE(2320), 1, + STATE(2345), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2460), 1, sym_lifetime, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -84052,7 +83256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1433), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -84082,279 +83286,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14134] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2562), 17, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DASH_GT, + [8645] = 32, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2560), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_DASH, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14200] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(408), 18, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(688), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2564), 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_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14266] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2568), 17, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(906), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2566), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, + ACTIONS(910), 1, anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, + ACTIONS(912), 1, anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_DASH, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14332] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(880), 17, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DASH_GT, - anon_sym_LT, + ACTIONS(916), 1, anon_sym_COLON_COLON, + ACTIONS(918), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(878), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_DASH, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [14398] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1871), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1834), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1836), 38, + sym_block_comment, + sym_line_comment, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84372,443 +83383,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_const, - anon_sym_default, + [8774] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - anon_sym_ref, - anon_sym__, + ACTIONS(726), 1, anon_sym_dyn, - sym_mutable_specifier, - anon_sym_DOT_DOT, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14460] = 9, - ACTIONS(2572), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_BANG, - ACTIONS(2578), 1, - anon_sym_COLON_COLON, - ACTIONS(2580), 1, - anon_sym_LT2, - STATE(1007), 1, - sym_type_arguments, - STATE(1043), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2574), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2570), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14530] = 8, - ACTIONS(2572), 1, - anon_sym_LPAREN, - ACTIONS(2578), 1, - anon_sym_COLON_COLON, - ACTIONS(2580), 1, - anon_sym_LT2, - STATE(1007), 1, - sym_type_arguments, - STATE(1043), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2584), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2582), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14597] = 8, - ACTIONS(2572), 1, - anon_sym_LPAREN, - ACTIONS(2578), 1, - anon_sym_COLON_COLON, - ACTIONS(2580), 1, - anon_sym_LT2, - STATE(1007), 1, - sym_type_arguments, - STATE(1043), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2588), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2586), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14664] = 5, - ACTIONS(2594), 1, - anon_sym_BANG, - ACTIONS(2596), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2590), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14724] = 5, - ACTIONS(2602), 1, - anon_sym_BANG, - ACTIONS(2604), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2600), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2598), 28, - anon_sym_SEMI, + ACTIONS(902), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(906), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14784] = 5, - ACTIONS(2610), 1, - anon_sym_BANG, - ACTIONS(2612), 1, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2608), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2606), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14844] = 7, - ACTIONS(2572), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, - anon_sym_LT2, - STATE(1011), 1, - sym_type_arguments, - STATE(1035), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2616), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(918), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2614), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14908] = 3, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1632), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1746), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1748), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84826,42 +83480,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [8903] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(2069), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 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(922), 3, sym_self, sym_super, sym_crate, - [14964] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1954), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1956), 38, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84879,211 +83577,86 @@ 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, + [9032] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15020] = 7, - ACTIONS(2576), 1, + ACTIONS(710), 1, anon_sym_BANG, - ACTIONS(2618), 1, - anon_sym_LBRACE, - ACTIONS(2620), 1, - anon_sym_COLON_COLON, - STATE(1090), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(568), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(566), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15084] = 7, - ACTIONS(2572), 1, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, - anon_sym_LT2, - STATE(1011), 1, - sym_type_arguments, - STATE(1035), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2624), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2622), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(906), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [15148] = 5, - ACTIONS(2630), 1, - anon_sym_BANG, - ACTIONS(2632), 1, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2628), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(918), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2626), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [15208] = 3, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1924), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1522), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1524), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85101,99 +83674,86 @@ 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, + [9161] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15264] = 7, - ACTIONS(2572), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, - anon_sym_LT2, - STATE(1011), 1, - sym_type_arguments, - STATE(1035), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2636), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2634), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(906), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [15328] = 3, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1991), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1558), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1560), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85211,98 +83771,86 @@ 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, + [9290] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15384] = 6, - ACTIONS(2644), 1, + ACTIONS(710), 1, anon_sym_BANG, - ACTIONS(2646), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, + ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2640), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2638), 23, - anon_sym_SEMI, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - anon_sym_RBRACE, + ACTIONS(906), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15446] = 3, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1675), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1610), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1612), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85320,466 +83868,183 @@ 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, + [9419] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15502] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2630), 16, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(710), 1, anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2632), 30, - anon_sym_SEMI, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(906), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15557] = 4, - ACTIONS(2648), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2594), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(918), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2596), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15614] = 5, - ACTIONS(2654), 1, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(1084), 1, - sym_loop_label, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2652), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2650), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15673] = 5, - ACTIONS(2656), 1, - anon_sym_else, - STATE(1132), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(394), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(392), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15732] = 4, - ACTIONS(2658), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2610), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2612), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15789] = 5, - ACTIONS(2656), 1, - anon_sym_else, - STATE(1063), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(502), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(500), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15848] = 4, - ACTIONS(2660), 1, - anon_sym_LBRACE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1814), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [9548] = 32, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2604), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15905] = 4, - ACTIONS(2662), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2630), 16, - anon_sym_PLUS, + ACTIONS(688), 1, anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2632), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15962] = 3, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(2018), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1426), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1428), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85797,40 +84062,86 @@ 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, + [9677] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [16016] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(2155), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1538), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1540), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85848,198 +84159,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, + [9806] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(2514), 1, + sym_identifier, + ACTIONS(2516), 1, + anon_sym_LPAREN, + ACTIONS(2518), 1, + anon_sym_LBRACK, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2526), 1, anon_sym_default, - anon_sym_enum, + ACTIONS(2528), 1, anon_sym_fn, + ACTIONS(2530), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + ACTIONS(2532), 1, anon_sym_union, + ACTIONS(2534), 1, + anon_sym_BANG, + ACTIONS(2536), 1, + anon_sym_COLON_COLON, + ACTIONS(2538), 1, + anon_sym_AMP, + ACTIONS(2540), 1, + anon_sym_dyn, + ACTIONS(2546), 1, + sym_metavariable, + STATE(785), 1, + sym_scoped_type_identifier, + STATE(834), 1, + sym_generic_type, + STATE(869), 1, + sym__type, + STATE(1230), 1, + sym_for_lifetimes, + STATE(2360), 1, + sym_scoped_identifier, + STATE(2421), 1, + sym_lifetime, + STATE(2431), 1, + sym_function_modifiers, + STATE(2540), 1, + sym_bracketed_type, + STATE(2541), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(2544), 3, sym_self, sym_super, sym_crate, - [16070] = 5, - ACTIONS(2666), 1, - anon_sym_LPAREN, - STATE(1096), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2668), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + STATE(1143), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2524), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [9935] = 32, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2664), 28, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16128] = 4, - ACTIONS(2670), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(568), 15, - anon_sym_PLUS, + ACTIONS(688), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(566), 29, - anon_sym_SEMI, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(906), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16184] = 5, - ACTIONS(2646), 1, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2672), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2640), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(918), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2638), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16242] = 3, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1667), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1722), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1724), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86057,40 +84353,86 @@ 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, + [10064] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [16296] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1665), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1448), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1450), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86108,195 +84450,86 @@ 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, + [10193] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16350] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(848), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(850), 30, - anon_sym_SEMI, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(906), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16404] = 5, - ACTIONS(2576), 1, - anon_sym_BANG, - ACTIONS(2674), 1, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(568), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(918), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(566), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16462] = 3, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1673), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1590), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1592), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 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(922), 3, sym_self, sym_super, sym_crate, - [16516] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(554), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(556), 38, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86314,40 +84547,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, + [10322] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(2514), 1, + sym_identifier, + ACTIONS(2516), 1, + anon_sym_LPAREN, + ACTIONS(2518), 1, + anon_sym_LBRACK, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2526), 1, anon_sym_default, - anon_sym_enum, + ACTIONS(2528), 1, anon_sym_fn, + ACTIONS(2530), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + ACTIONS(2532), 1, anon_sym_union, + ACTIONS(2534), 1, + anon_sym_BANG, + ACTIONS(2536), 1, + anon_sym_COLON_COLON, + ACTIONS(2538), 1, + anon_sym_AMP, + ACTIONS(2540), 1, + anon_sym_dyn, + ACTIONS(2546), 1, + sym_metavariable, + STATE(785), 1, + sym_scoped_type_identifier, + STATE(834), 1, + sym_generic_type, + STATE(868), 1, + sym__type, + STATE(1230), 1, + sym_for_lifetimes, + STATE(2360), 1, + sym_scoped_identifier, + STATE(2421), 1, + sym_lifetime, + STATE(2431), 1, + sym_function_modifiers, + STATE(2540), 1, + sym_bracketed_type, + STATE(2541), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(2544), 3, sym_self, sym_super, sym_crate, - [16570] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1670), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1672), 38, + STATE(1143), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2524), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86365,40 +84644,86 @@ 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, + [10451] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [16624] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1995), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1542), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1544), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86416,40 +84741,86 @@ 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, + [10580] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [16678] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(2107), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(542), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(544), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86467,40 +84838,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [10709] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1904), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 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(922), 3, sym_self, sym_super, sym_crate, - [16732] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(548), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(550), 38, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86518,40 +84935,86 @@ 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, + [10838] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [16786] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1742), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1678), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1680), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86569,40 +85032,86 @@ 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, + [10967] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [16840] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1905), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1742), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1744), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86620,40 +85129,32 @@ 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, - [16894] = 3, + [11096] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1602), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(1324), 20, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, anon_sym_POUND, + anon_sym_BANG, + anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1604), 38, + ACTIONS(1326), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86671,40 +85172,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_SQUOTE, anon_sym_async, + anon_sym_break, anon_sym_const, + anon_sym_continue, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_while, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [16948] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(574), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + [11167] = 32, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(576), 38, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(2590), 1, + sym_identifier, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1549), 1, + sym_scoped_type_identifier, + STATE(1660), 1, + sym_generic_type, + STATE(1709), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86722,40 +85294,86 @@ 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, + [11296] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [17002] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1828), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(620), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(622), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86773,40 +85391,86 @@ 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, + [11425] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [17056] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(2217), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1834), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1836), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86824,40 +85488,86 @@ 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, + [11554] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [17110] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(2140), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(588), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86875,40 +85585,86 @@ 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, + [11683] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [17164] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1942), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1686), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1688), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86926,40 +85682,86 @@ 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, + [11812] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [17218] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1434), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(672), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(674), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86977,91 +85779,86 @@ 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, + [11941] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17272] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2678), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2676), 30, - anon_sym_SEMI, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(906), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17326] = 3, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1424), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1802), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1804), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87079,92 +85876,86 @@ 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, + [12070] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17380] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2682), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2684), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2680), 28, - anon_sym_SEMI, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(906), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17436] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1472), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(1474), 38, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(2108), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87182,91 +85973,86 @@ 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, + [12199] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17490] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2688), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2686), 30, - anon_sym_SEMI, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(906), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17544] = 3, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1912), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1496), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1498), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87284,195 +86070,86 @@ 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, + [12328] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17598] = 4, - ACTIONS(2694), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2692), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2690), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17654] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2698), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2696), 30, - anon_sym_SEMI, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(906), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17708] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2700), 2, - anon_sym_LBRACE, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2684), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(918), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2680), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17764] = 3, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1913), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1366), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1368), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87490,40 +86167,86 @@ 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, + [12457] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [17818] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(2004), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1978), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1980), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87541,40 +86264,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [12586] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1923), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 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(922), 3, sym_self, sym_super, sym_crate, - [17872] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1970), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1972), 38, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87592,40 +86361,86 @@ 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, + [12715] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [17926] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1714), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1518), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1520), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87643,40 +86458,86 @@ 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, + [12844] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [17980] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(2064), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1224), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1226), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87694,40 +86555,86 @@ 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, + [12973] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [18034] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1442), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1962), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1964), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87745,40 +86652,86 @@ 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, + [13102] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [18088] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1435), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1946), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1948), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87796,40 +86749,86 @@ 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, + [13231] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [18142] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1446), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1334), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1336), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87847,40 +86846,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [13360] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(2514), 1, + sym_identifier, + ACTIONS(2516), 1, + anon_sym_LPAREN, + ACTIONS(2518), 1, + anon_sym_LBRACK, + ACTIONS(2522), 1, + anon_sym_STAR, + ACTIONS(2526), 1, + anon_sym_default, + ACTIONS(2528), 1, + anon_sym_fn, + ACTIONS(2530), 1, + anon_sym_impl, + ACTIONS(2532), 1, + anon_sym_union, + ACTIONS(2534), 1, + anon_sym_BANG, + ACTIONS(2536), 1, + anon_sym_COLON_COLON, + ACTIONS(2538), 1, + anon_sym_AMP, + ACTIONS(2540), 1, + anon_sym_dyn, + ACTIONS(2546), 1, + sym_metavariable, + STATE(785), 1, + sym_scoped_type_identifier, + STATE(834), 1, + sym_generic_type, + STATE(852), 1, + sym__type, + STATE(1230), 1, + sym_for_lifetimes, + STATE(2360), 1, + sym_scoped_identifier, + STATE(2421), 1, + sym_lifetime, + STATE(2431), 1, + sym_function_modifiers, + STATE(2540), 1, + sym_bracketed_type, + STATE(2541), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 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(2544), 3, sym_self, sym_super, sym_crate, - [18196] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1330), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1332), 38, + STATE(1143), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2524), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87898,40 +86943,86 @@ 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, + [13489] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [18250] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1658), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1806), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1808), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87949,40 +87040,86 @@ 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, + [13618] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [18304] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1439), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1822), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1824), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88000,40 +87137,86 @@ 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, + [13747] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [18358] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1712), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1830), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1832), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88051,40 +87234,86 @@ 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, + [13876] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [18412] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1691), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1324), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88102,91 +87331,86 @@ 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, + [14005] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18466] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2704), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2702), 30, - anon_sym_SEMI, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(906), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18520] = 3, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2357), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1374), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1426), 1, + sym__type, + STATE(2345), 1, + sym_scoped_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2460), 1, + sym_lifetime, + STATE(2463), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1302), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1304), 38, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1433), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88204,40 +87428,29 @@ 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, - [18574] = 3, + [14134] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1286), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2594), 17, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1288), 38, + ACTIONS(2592), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88255,40 +87468,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_SQUOTE, anon_sym_async, + anon_sym_break, anon_sym_const, + anon_sym_continue, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_while, + anon_sym_DASH, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [18628] = 3, + [14200] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1842), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(398), 18, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1844), 38, + ACTIONS(2596), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88306,40 +87532,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_SQUOTE, anon_sym_async, + anon_sym_break, anon_sym_const, + anon_sym_continue, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_while, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [18682] = 3, + [14266] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1942), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(880), 17, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1944), 38, + ACTIONS(878), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88357,40 +87594,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_SQUOTE, anon_sym_async, + anon_sym_break, anon_sym_const, + anon_sym_continue, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_while, + anon_sym_DASH, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [18736] = 3, + [14332] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1870), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2600), 17, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1872), 38, + ACTIONS(2598), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88408,40 +87657,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_SQUOTE, anon_sym_async, + anon_sym_break, anon_sym_const, + anon_sym_continue, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_while, + anon_sym_DASH, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [18790] = 3, + [14398] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1228), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(1324), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1230), 38, + ACTIONS(1326), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88459,448 +87718,734 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_SQUOTE, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, anon_sym_extern, + anon_sym_ref, + anon_sym__, + anon_sym_dyn, + sym_mutable_specifier, + anon_sym_DOT_DOT, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [18844] = 3, + [14460] = 9, + ACTIONS(2604), 1, + anon_sym_LPAREN, + ACTIONS(2608), 1, + anon_sym_BANG, + ACTIONS(2610), 1, + anon_sym_COLON_COLON, + ACTIONS(2612), 1, + anon_sym_LT2, + STATE(808), 1, + sym_parameters, + STATE(811), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1934), 7, + ACTIONS(2606), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2602), 27, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14531] = 8, + ACTIONS(2604), 1, + anon_sym_LPAREN, + ACTIONS(2610), 1, + anon_sym_COLON_COLON, + ACTIONS(2612), 1, + anon_sym_LT2, + STATE(808), 1, + sym_parameters, + STATE(811), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2616), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2614), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14599] = 8, + ACTIONS(2604), 1, + anon_sym_LPAREN, + ACTIONS(2610), 1, + anon_sym_COLON_COLON, + ACTIONS(2612), 1, + anon_sym_LT2, + STATE(808), 1, + sym_parameters, + STATE(811), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2620), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2618), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14667] = 7, + ACTIONS(2604), 1, + anon_sym_LPAREN, + ACTIONS(2612), 1, + anon_sym_LT2, + STATE(814), 1, + sym_type_arguments, + STATE(837), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2624), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2622), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14732] = 5, + ACTIONS(2630), 1, + anon_sym_BANG, + ACTIONS(2632), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1936), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18898] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1476), 7, + ACTIONS(2628), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2626), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14793] = 5, + ACTIONS(2638), 1, + anon_sym_BANG, + ACTIONS(2640), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1478), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18952] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1626), 7, + ACTIONS(2636), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2634), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14854] = 7, + ACTIONS(2608), 1, + anon_sym_BANG, + ACTIONS(2642), 1, + anon_sym_LBRACE, + ACTIONS(2644), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1628), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19006] = 3, + STATE(1021), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1378), 7, + ACTIONS(566), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(568), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [14919] = 5, + ACTIONS(2650), 1, + anon_sym_BANG, + ACTIONS(2652), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1380), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19060] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1204), 7, + ACTIONS(2648), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2646), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14980] = 5, + ACTIONS(2658), 1, + anon_sym_BANG, + ACTIONS(2660), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1206), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19114] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1410), 7, + ACTIONS(2656), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2654), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15041] = 7, + ACTIONS(2604), 1, + anon_sym_LPAREN, + ACTIONS(2612), 1, + anon_sym_LT2, + STATE(814), 1, + sym_type_arguments, + STATE(837), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2664), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1412), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19168] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2662), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15106] = 7, + ACTIONS(2604), 1, + anon_sym_LPAREN, + ACTIONS(2612), 1, + anon_sym_LT2, + STATE(814), 1, + sym_type_arguments, + STATE(837), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1188), 7, + ACTIONS(2668), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2666), 27, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1190), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19222] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15171] = 4, + ACTIONS(2670), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1156), 7, + ACTIONS(2650), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2652), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1158), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19276] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15229] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1140), 7, + ACTIONS(1546), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1142), 38, + ACTIONS(1548), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88939,223 +88484,240 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19330] = 3, + [15285] = 5, + ACTIONS(2676), 1, + anon_sym_SQUOTE, + STATE(1128), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1894), 7, + ACTIONS(2674), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2672), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1896), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19384] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15345] = 4, + ACTIONS(2678), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1818), 7, + ACTIONS(2638), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2640), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15403] = 6, + ACTIONS(2686), 1, + anon_sym_BANG, + ACTIONS(2688), 1, anon_sym_COLON_COLON, - 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, - [19438] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1502), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1504), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, + ACTIONS(2684), 6, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, anon_sym_unsafe, - anon_sym_use, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19492] = 3, + ACTIONS(2682), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2680), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15465] = 4, + ACTIONS(2690), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1550), 7, + ACTIONS(2658), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2660), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1552), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19546] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15523] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1762), 7, + ACTIONS(1822), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1764), 38, + ACTIONS(1824), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89194,19 +88756,21 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19600] = 3, + [15579] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1810), 7, + ACTIONS(1662), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1812), 38, + ACTIONS(1664), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89245,19 +88809,75 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19654] = 3, + [15635] = 4, + ACTIONS(2692), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1898), 7, + ACTIONS(2630), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2632), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15693] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1354), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1900), 38, + ACTIONS(1356), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89296,19 +88916,74 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19708] = 3, + [15749] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1128), 7, + ACTIONS(2658), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2660), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15805] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1300), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1130), 38, + ACTIONS(1302), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89347,1337 +89022,1804 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19762] = 3, + [15861] = 5, + ACTIONS(2688), 1, + anon_sym_COLON_COLON, + ACTIONS(2694), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1112), 7, + ACTIONS(2682), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2680), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15920] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2698), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2696), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15975] = 5, + ACTIONS(2608), 1, + anon_sym_BANG, + ACTIONS(2700), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1114), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19816] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2014), 7, + ACTIONS(566), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(568), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16034] = 4, + ACTIONS(2706), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2704), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2702), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16091] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2710), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2708), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16146] = 4, + ACTIONS(2716), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2714), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2712), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16203] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2720), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2718), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16258] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2724), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2722), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16313] = 4, + ACTIONS(2726), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(2016), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19870] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1120), 7, + ACTIONS(2624), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2622), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16370] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2730), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2728), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1122), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19924] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16425] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2010), 7, + ACTIONS(2734), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2732), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(2012), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19978] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16480] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1124), 7, + ACTIONS(2738), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2736), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1126), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20032] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16535] = 5, + ACTIONS(2740), 1, + anon_sym_else, + STATE(972), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1786), 7, + ACTIONS(500), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(498), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(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, - [20086] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16594] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1990), 7, + ACTIONS(2744), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2742), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1992), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20140] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16649] = 4, + ACTIONS(2750), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1838), 7, + ACTIONS(2748), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2746), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(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, - [20194] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16706] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1132), 7, + ACTIONS(2754), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2752), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1134), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20248] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16761] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1184), 7, + ACTIONS(2656), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2654), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1186), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20302] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [16816] = 5, + ACTIONS(2740), 1, + anon_sym_else, + STATE(1109), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1794), 7, + ACTIONS(492), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(490), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(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, - [20356] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16875] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1196), 7, + ACTIONS(2758), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2756), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1198), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20410] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16930] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1790), 7, + ACTIONS(2762), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2760), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, anon_sym_COLON_COLON, - 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, - [20464] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16985] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1220), 7, + ACTIONS(2766), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2768), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2764), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17042] = 4, + ACTIONS(2770), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1222), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20518] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1104), 7, + ACTIONS(566), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(568), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1106), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20572] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17099] = 4, + ACTIONS(2776), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1754), 7, + ACTIONS(2774), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2772), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(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, - [20626] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17156] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1750), 7, + ACTIONS(2778), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2768), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2764), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17213] = 5, + ACTIONS(2782), 1, + anon_sym_LPAREN, + STATE(970), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2784), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1752), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20680] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2780), 29, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17272] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1734), 7, + ACTIONS(822), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(824), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(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, - [20734] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17327] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1778), 7, + ACTIONS(2788), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2786), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1780), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20788] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17382] = 4, + ACTIONS(2794), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1726), 7, + ACTIONS(2792), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2790), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(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, - [20842] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17439] = 4, + ACTIONS(2800), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1718), 7, + ACTIONS(2798), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2796), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17496] = 4, + ACTIONS(2802), 1, anon_sym_COLON_COLON, - 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, - [20896] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1266), 7, + ACTIONS(2624), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2622), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17553] = 4, + ACTIONS(2802), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1268), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20950] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1706), 7, + ACTIONS(2664), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2662), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1708), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21004] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17610] = 4, + ACTIONS(2804), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1270), 7, + ACTIONS(2624), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2622), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1272), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21058] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17667] = 4, + ACTIONS(2810), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1690), 7, + ACTIONS(2808), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2806), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17724] = 4, + ACTIONS(2802), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1692), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21112] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1666), 7, + ACTIONS(2668), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2666), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1668), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21166] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17781] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1654), 7, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90685,7 +90827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1656), 38, + ACTIONS(1944), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90724,62 +90866,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21220] = 3, + [17835] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1634), 7, + ACTIONS(670), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(668), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1636), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21274] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17889] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1622), 7, + ACTIONS(1850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90787,7 +90929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1624), 38, + ACTIONS(1852), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90826,62 +90968,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21328] = 3, + [17943] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1274), 7, + ACTIONS(2814), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2812), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17997] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2818), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1276), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21382] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2816), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18051] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1642), 7, + ACTIONS(1858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90889,7 +91082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1644), 38, + ACTIONS(1860), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90928,11 +91121,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21436] = 3, + [18105] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1618), 7, + ACTIONS(1328), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90940,7 +91133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1620), 38, + ACTIONS(1330), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90979,11 +91172,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21490] = 3, + [18159] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1278), 7, + ACTIONS(1862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90991,7 +91184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1280), 38, + ACTIONS(1864), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91030,11 +91223,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21544] = 3, + [18213] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1578), 7, + ACTIONS(1886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91042,7 +91235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1580), 38, + ACTIONS(1888), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91081,62 +91274,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21598] = 3, + [18267] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1294), 7, + ACTIONS(602), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(600), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1296), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21652] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18321] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1574), 7, + ACTIONS(1316), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91144,7 +91337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1576), 38, + ACTIONS(1318), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91183,11 +91376,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21706] = 3, + [18375] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1554), 7, + ACTIONS(1312), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91195,7 +91388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1556), 38, + ACTIONS(1314), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91234,11 +91427,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21760] = 3, + [18429] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1456), 7, + ACTIONS(1308), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91246,7 +91439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1458), 38, + ACTIONS(1310), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91285,11 +91478,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21814] = 3, + [18483] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1306), 7, + ACTIONS(2822), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2820), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18537] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91297,7 +91541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1308), 38, + ACTIONS(1306), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91336,11 +91580,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21868] = 3, + [18591] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1514), 7, + ACTIONS(1292), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91348,7 +91592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1516), 38, + ACTIONS(1294), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91387,13 +91631,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21922] = 4, - ACTIONS(2710), 1, - anon_sym_DASH_GT, + [18645] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 15, + ACTIONS(2826), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91409,7 +91651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2706), 29, + ACTIONS(2824), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91421,6 +91663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -91439,11 +91682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21978] = 3, + [18699] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(550), 15, + ACTIONS(2830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91459,7 +91702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(548), 30, + ACTIONS(2828), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91471,6 +91714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -91489,14 +91733,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [18753] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1890), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1892), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18807] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2834), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2832), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_else, - [22032] = 4, - ACTIONS(2716), 1, - anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18861] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2714), 15, + ACTIONS(2838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91512,7 +91855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2712), 29, + ACTIONS(2836), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91524,6 +91867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -91542,11 +91886,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22088] = 3, + [18915] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1438), 7, + ACTIONS(1902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91554,7 +91898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1440), 38, + ACTIONS(1904), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91593,11 +91937,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22142] = 3, + [18969] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, + ACTIONS(1926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91605,7 +91949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1320), 38, + ACTIONS(1928), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91644,11 +91988,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22196] = 3, + [19023] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1314), 7, + ACTIONS(1288), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91656,7 +92000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1316), 38, + ACTIONS(1290), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91695,11 +92039,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22250] = 3, + [19077] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1414), 7, + ACTIONS(1284), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91707,7 +92051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1416), 38, + ACTIONS(1286), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91746,62 +92090,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22304] = 3, + [19131] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1350), 7, + ACTIONS(2842), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2840), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1352), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22358] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19185] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1262), 7, + ACTIONS(1256), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91809,7 +92153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1264), 38, + ACTIONS(1258), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91848,11 +92192,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22412] = 3, + [19239] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1236), 7, + ACTIONS(2010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91860,7 +92204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1238), 38, + ACTIONS(2012), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91899,11 +92243,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22466] = 3, + [19293] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1342), 7, + ACTIONS(1244), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91911,7 +92255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1344), 38, + ACTIONS(1246), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91950,13 +92294,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22520] = 4, - ACTIONS(2722), 1, - anon_sym_DASH_GT, + [19347] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2720), 15, + ACTIONS(2846), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91972,7 +92314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2718), 29, + ACTIONS(2844), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91984,6 +92326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -92002,62 +92345,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22576] = 3, + [19401] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1390), 7, + ACTIONS(2850), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2848), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1392), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22630] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19455] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1394), 7, + ACTIONS(2014), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92065,7 +92408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1396), 38, + ACTIONS(2016), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92104,62 +92447,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22684] = 3, + [19509] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1406), 7, + ACTIONS(2854), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2852), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1408), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22738] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19563] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2726), 15, + ACTIONS(606), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92175,7 +92518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2724), 30, + ACTIONS(604), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92187,7 +92530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -92206,13 +92549,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22792] = 4, - ACTIONS(2728), 1, - anon_sym_COLON_COLON, + [19617] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 15, + ACTIONS(610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92228,7 +92569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2614), 29, + ACTIONS(608), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92240,6 +92581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -92258,11 +92600,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22848] = 3, + [19671] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1658), 7, + ACTIONS(1120), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92270,7 +92612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1660), 38, + ACTIONS(1122), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92309,11 +92651,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22902] = 3, + [19725] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1698), 7, + ACTIONS(1124), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92321,7 +92663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1700), 38, + ACTIONS(1126), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92360,11 +92702,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22956] = 3, + [19779] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1212), 7, + ACTIONS(1136), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92372,7 +92714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1214), 38, + ACTIONS(1138), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92411,11 +92753,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23010] = 3, + [19833] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1714), 7, + ACTIONS(1116), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92423,7 +92765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1716), 38, + ACTIONS(1118), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92462,11 +92804,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23064] = 3, + [19887] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1738), 7, + ACTIONS(2018), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92474,7 +92816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1740), 38, + ACTIONS(2020), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92513,11 +92855,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23118] = 3, + [19941] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1172), 7, + ACTIONS(1128), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92525,7 +92867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1174), 38, + ACTIONS(1130), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92564,110 +92906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23172] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2732), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2730), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23226] = 4, - ACTIONS(2734), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2616), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2614), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23282] = 3, + [19995] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -92718,62 +92957,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23336] = 3, + [20049] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1160), 7, + ACTIONS(560), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(558), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1162), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23390] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20103] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1882), 7, + ACTIONS(1112), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92781,7 +93020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1884), 38, + ACTIONS(1114), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92820,63 +93059,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23444] = 4, - ACTIONS(2736), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2616), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2614), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23500] = 3, + [20157] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1148), 7, + ACTIONS(1462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92884,7 +93071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1150), 38, + ACTIONS(1464), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92923,62 +93110,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23554] = 3, + [20211] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2626), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [23608] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1290), 7, + ACTIONS(1132), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92986,7 +93122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1292), 38, + ACTIONS(1134), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93025,62 +93161,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23662] = 3, + [20265] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1902), 7, + ACTIONS(2858), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2856), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(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, - [23716] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20319] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1398), 7, + ACTIONS(1152), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93088,7 +93224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1400), 38, + ACTIONS(1154), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93127,11 +93263,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23770] = 3, + [20373] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1922), 7, + ACTIONS(1366), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93139,7 +93275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1924), 38, + ACTIONS(1368), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93178,62 +93314,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23824] = 3, + [20427] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1926), 7, + ACTIONS(630), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(628), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(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, - [23878] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20481] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1974), 7, + ACTIONS(1192), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93241,7 +93377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1976), 38, + ACTIONS(1194), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93280,11 +93416,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23932] = 3, + [20535] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1986), 7, + ACTIONS(1370), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93292,7 +93428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1988), 38, + ACTIONS(1372), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93331,11 +93467,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23986] = 3, + [20589] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1418), 7, + ACTIONS(1200), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93343,7 +93479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1420), 38, + ACTIONS(1202), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93382,11 +93518,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24040] = 3, + [20643] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1434), 7, + ACTIONS(1208), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93394,7 +93530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1436), 38, + ACTIONS(1210), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93433,11 +93569,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24094] = 3, + [20697] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1464), 7, + ACTIONS(1390), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93445,7 +93581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1466), 38, + ACTIONS(1392), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93484,11 +93620,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24148] = 3, + [20751] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1492), 7, + ACTIONS(1212), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93496,7 +93632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1494), 38, + ACTIONS(1214), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93535,11 +93671,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24202] = 3, + [20805] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1530), 7, + ACTIONS(1394), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93547,7 +93683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1532), 38, + ACTIONS(1396), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93586,62 +93722,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24256] = 3, + [20859] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2740), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2738), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24310] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1460), 7, + ACTIONS(2034), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93649,7 +93734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1462), 38, + ACTIONS(2036), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93688,11 +93773,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24364] = 3, + [20913] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1468), 7, + ACTIONS(1216), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93700,7 +93785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1470), 38, + ACTIONS(1218), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93739,11 +93824,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24418] = 3, + [20967] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1782), 7, + ACTIONS(1224), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93751,7 +93836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1784), 38, + ACTIONS(1226), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93790,62 +93875,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24472] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2744), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2742), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24526] = 3, + [21021] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1770), 7, + ACTIONS(1268), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93853,7 +93887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1772), 38, + ACTIONS(1270), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93892,11 +93926,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24580] = 3, + [21075] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1774), 7, + ACTIONS(1280), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93904,7 +93938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1776), 38, + ACTIONS(1282), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93943,11 +93977,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24634] = 3, + [21129] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1354), 7, + ACTIONS(1398), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93955,7 +93989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1356), 38, + ACTIONS(1400), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93994,11 +94028,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24688] = 3, + [21183] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1950), 7, + ACTIONS(2862), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2860), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [21237] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1402), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94006,7 +94091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1952), 38, + ACTIONS(1404), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94045,11 +94130,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24742] = 3, + [21291] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1374), 7, + ACTIONS(1320), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94057,7 +94142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1376), 38, + ACTIONS(1322), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94096,11 +94181,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24796] = 3, + [21345] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2002), 7, + ACTIONS(1430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94108,7 +94193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2004), 38, + ACTIONS(1432), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94147,11 +94232,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24850] = 3, + [21399] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2006), 7, + ACTIONS(1434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94159,7 +94244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2008), 38, + ACTIONS(1436), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94198,11 +94283,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24904] = 3, + [21453] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1998), 7, + ACTIONS(1374), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94210,7 +94295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2000), 38, + ACTIONS(1376), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94249,11 +94334,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24958] = 3, + [21507] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(556), 15, + ACTIONS(674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94269,7 +94354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(554), 30, + ACTIONS(672), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94281,6 +94366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -94299,12 +94385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_else, - [25012] = 3, + [21561] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1370), 7, + ACTIONS(1378), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94312,7 +94397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1372), 38, + ACTIONS(1380), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94351,11 +94436,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25066] = 3, + [21615] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1422), 7, + ACTIONS(1382), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94363,7 +94448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1424), 38, + ACTIONS(1384), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94402,11 +94487,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25120] = 3, + [21669] = 4, + ACTIONS(2688), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1850), 7, + ACTIONS(2682), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2680), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [21725] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94414,7 +94551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1852), 38, + ACTIONS(1408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94453,11 +94590,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25174] = 3, + [21779] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1730), 7, + ACTIONS(1458), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94465,7 +94602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1732), 38, + ACTIONS(1460), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94504,11 +94641,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25228] = 3, + [21833] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1994), 7, + ACTIONS(1418), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94516,7 +94653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1996), 38, + ACTIONS(1420), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94555,11 +94692,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25282] = 3, + [21887] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1702), 7, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94567,7 +94704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1704), 38, + ACTIONS(1972), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94606,11 +94743,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25336] = 3, + [21941] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1982), 7, + ACTIONS(1422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94618,7 +94755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1984), 38, + ACTIONS(1424), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94657,11 +94794,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25390] = 3, + [21995] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1966), 7, + ACTIONS(1426), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94669,7 +94806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1968), 38, + ACTIONS(1428), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94708,11 +94845,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25444] = 3, + [22049] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1694), 7, + ACTIONS(1438), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94720,7 +94857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1696), 38, + ACTIONS(1440), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94759,11 +94896,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25498] = 3, + [22103] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1958), 7, + ACTIONS(1442), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94771,7 +94908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1960), 38, + ACTIONS(1444), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94810,11 +94947,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25552] = 3, + [22157] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1682), 7, + ACTIONS(1450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94822,7 +94959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1684), 38, + ACTIONS(1452), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94861,11 +94998,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25606] = 3, + [22211] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1938), 7, + ACTIONS(1496), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94873,7 +95010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1940), 38, + ACTIONS(1498), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94912,11 +95049,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25660] = 3, + [22265] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1650), 7, + ACTIONS(1954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94924,7 +95061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1652), 38, + ACTIONS(1956), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94963,11 +95100,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25714] = 3, + [22319] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1646), 7, + ACTIONS(1500), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94975,7 +95112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1648), 38, + ACTIONS(1502), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95014,11 +95151,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25768] = 3, + [22373] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1638), 7, + ACTIONS(1104), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95026,7 +95163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1640), 38, + ACTIONS(1106), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95065,11 +95202,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25822] = 3, + [22427] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1930), 7, + ACTIONS(1522), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95077,7 +95214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1932), 38, + ACTIONS(1524), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95116,11 +95253,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25876] = 3, + [22481] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1346), 7, + ACTIONS(1826), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95128,7 +95265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1348), 38, + ACTIONS(1828), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95167,11 +95304,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25930] = 3, + [22535] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1906), 7, + ACTIONS(1478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95179,7 +95316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1908), 38, + ACTIONS(1480), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95218,11 +95355,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25984] = 3, + [22589] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1108), 7, + ACTIONS(1484), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95230,7 +95367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1110), 38, + ACTIONS(1486), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95269,11 +95406,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26038] = 3, + [22643] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1606), 7, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95281,7 +95418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1608), 38, + ACTIONS(1948), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95320,11 +95457,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26092] = 3, + [22697] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1890), 7, + ACTIONS(1492), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95332,7 +95469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1892), 38, + ACTIONS(1494), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95371,62 +95508,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26146] = 3, + [22751] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1594), 7, + ACTIONS(646), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(644), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1596), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26200] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22805] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1886), 7, + ACTIONS(1108), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95434,7 +95571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1888), 38, + ACTIONS(1110), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95473,11 +95610,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26254] = 3, + [22859] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1430), 7, + ACTIONS(1530), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95485,7 +95622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1432), 38, + ACTIONS(1532), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95524,11 +95661,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26308] = 3, + [22913] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1878), 7, + ACTIONS(1650), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95536,7 +95673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1880), 38, + ACTIONS(1652), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95575,11 +95712,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26362] = 3, + [22967] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1402), 7, + ACTIONS(1534), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95587,7 +95724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1404), 38, + ACTIONS(1536), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95626,11 +95763,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26416] = 3, + [23021] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1918), 7, + ACTIONS(1542), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95638,7 +95775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1920), 38, + ACTIONS(1544), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95677,11 +95814,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26470] = 3, + [23075] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1338), 7, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95689,7 +95826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1340), 38, + ACTIONS(1940), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95728,62 +95865,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26524] = 3, + [23129] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1874), 7, + ACTIONS(2866), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2864), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1876), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26578] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23183] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1310), 7, + ACTIONS(1554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95791,7 +95928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1312), 38, + ACTIONS(1556), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95830,11 +95967,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26632] = 3, + [23237] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1866), 7, + ACTIONS(1562), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95842,7 +95979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1868), 38, + ACTIONS(1564), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95881,11 +96018,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26686] = 3, + [23291] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1862), 7, + ACTIONS(1566), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95893,7 +96030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1864), 38, + ACTIONS(1568), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95932,11 +96069,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26740] = 3, + [23345] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1298), 7, + ACTIONS(1666), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95944,7 +96081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1300), 38, + ACTIONS(1668), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95983,11 +96120,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26794] = 3, + [23399] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1858), 7, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95995,7 +96132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1860), 38, + ACTIONS(1880), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96034,11 +96171,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26848] = 3, + [23453] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1854), 7, + ACTIONS(1682), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96046,7 +96183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1856), 38, + ACTIONS(1684), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96085,11 +96222,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26902] = 3, + [23507] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1914), 7, + ACTIONS(1590), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96097,7 +96234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1916), 38, + ACTIONS(1592), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96136,11 +96273,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26956] = 3, + [23561] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(2870), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2868), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23615] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2874), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2872), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23669] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1594), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96148,7 +96387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1912), 38, + ACTIONS(1596), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96187,11 +96426,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27010] = 3, + [23723] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(544), 15, + ACTIONS(2874), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96207,7 +96446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(542), 30, + ACTIONS(2872), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96219,6 +96458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -96237,12 +96477,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_else, - [27064] = 3, + [23777] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1826), 7, + ACTIONS(1606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96250,7 +96489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1828), 38, + ACTIONS(1608), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96289,11 +96528,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27118] = 3, + [23831] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1846), 7, + ACTIONS(1610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96301,7 +96540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1848), 38, + ACTIONS(1612), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96340,11 +96579,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27172] = 3, + [23885] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1144), 7, + ACTIONS(1614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96352,7 +96591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1146), 38, + ACTIONS(1616), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96391,62 +96630,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27226] = 3, + [23939] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2748), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2746), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27280] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1814), 7, + ACTIONS(1618), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96454,7 +96642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1816), 38, + ACTIONS(1620), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96493,11 +96681,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27334] = 3, + [23993] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1798), 7, + ACTIONS(1694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96505,7 +96693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1800), 38, + ACTIONS(1696), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96544,11 +96732,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27388] = 3, + [24047] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1710), 7, + ACTIONS(1722), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96556,7 +96744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1712), 38, + ACTIONS(1724), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96595,62 +96783,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27442] = 3, + [24101] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2752), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2750), 30, + ACTIONS(1622), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27496] = 3, + sym_metavariable, + ACTIONS(1624), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24155] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1766), 7, + ACTIONS(1626), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96658,7 +96846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1768), 38, + ACTIONS(1628), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96697,11 +96885,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27550] = 3, + [24209] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1758), 7, + ACTIONS(1838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96709,7 +96897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1760), 38, + ACTIONS(1840), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96748,11 +96936,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27604] = 3, + [24263] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1674), 7, + ACTIONS(580), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(578), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24317] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1658), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96760,7 +96999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1676), 38, + ACTIONS(1660), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96799,11 +97038,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27658] = 3, + [24371] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1662), 7, + ACTIONS(1726), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96811,7 +97050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1664), 38, + ACTIONS(1728), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96850,11 +97089,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27712] = 3, + [24425] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1282), 7, + ACTIONS(1750), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96862,7 +97101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1284), 38, + ACTIONS(1752), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96901,11 +97140,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27766] = 3, + [24479] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1598), 7, + ACTIONS(2878), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2876), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24533] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96913,7 +97203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1600), 38, + ACTIONS(1748), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96952,11 +97242,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27820] = 3, + [24587] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1582), 7, + ACTIONS(2882), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2880), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24641] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1730), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96964,7 +97305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1584), 38, + ACTIONS(1732), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97003,11 +97344,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27874] = 3, + [24695] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1566), 7, + ACTIONS(2886), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2884), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24749] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97015,7 +97407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1568), 38, + ACTIONS(1708), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97054,11 +97446,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27928] = 3, + [24803] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(1734), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97066,7 +97458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1632), 38, + ACTIONS(1736), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97105,11 +97497,215 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27982] = 3, + [24857] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1614), 7, + ACTIONS(2890), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2888), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24911] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2894), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2892), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24965] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(650), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(648), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25019] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2898), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2896), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25073] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1738), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97117,7 +97713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1616), 38, + ACTIONS(1740), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97156,11 +97752,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28036] = 3, + [25127] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1152), 7, + ACTIONS(1742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97168,7 +97764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1154), 38, + ACTIONS(1744), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97207,11 +97803,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28090] = 3, + [25181] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1546), 7, + ACTIONS(1754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97219,7 +97815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1548), 38, + ACTIONS(1756), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97258,11 +97854,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28144] = 3, + [25235] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1534), 7, + ACTIONS(536), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97270,7 +97866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1536), 38, + ACTIONS(538), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97309,11 +97905,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28198] = 3, + [25289] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1510), 7, + ACTIONS(544), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97321,7 +97917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1512), 38, + ACTIONS(546), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97360,11 +97956,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28252] = 3, + [25343] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1232), 7, + ACTIONS(1140), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97372,7 +97968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1234), 38, + ACTIONS(1142), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97411,11 +98007,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28306] = 3, + [25397] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1506), 7, + ACTIONS(1794), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97423,7 +98019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1508), 38, + ACTIONS(1796), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97462,13 +98058,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28360] = 4, - ACTIONS(2758), 1, - anon_sym_DASH_GT, + [25451] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2756), 15, + ACTIONS(2902), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97484,7 +98078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2754), 29, + ACTIONS(2900), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97496,6 +98090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -97514,11 +98109,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28416] = 3, + [25505] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1216), 7, + ACTIONS(1802), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97526,7 +98121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1218), 38, + ACTIONS(1804), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97565,11 +98160,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28470] = 3, + [25559] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1586), 7, + ACTIONS(2906), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2904), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25613] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1758), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97577,7 +98223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1588), 38, + ACTIONS(1760), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97616,11 +98262,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28524] = 3, + [25667] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1208), 7, + ACTIONS(1762), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97628,7 +98274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1210), 38, + ACTIONS(1764), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97667,62 +98313,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28578] = 3, + [25721] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1488), 7, + ACTIONS(2910), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2908), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1490), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28632] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25775] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1200), 7, + ACTIONS(1766), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97730,7 +98376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1202), 38, + ACTIONS(1768), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97769,11 +98415,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28686] = 3, + [25829] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1192), 7, + ACTIONS(550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97781,7 +98427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1194), 38, + ACTIONS(552), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97820,63 +98466,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28740] = 4, - ACTIONS(2764), 1, - anon_sym_DASH_GT, + [25883] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2762), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2760), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28796] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1180), 7, + ACTIONS(1770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97884,7 +98478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1182), 38, + ACTIONS(1772), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97923,11 +98517,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28850] = 3, + [25937] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1176), 7, + ACTIONS(1774), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97935,7 +98529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1178), 38, + ACTIONS(1776), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97974,11 +98568,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28904] = 3, + [25991] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1452), 7, + ACTIONS(1778), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97986,7 +98580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1454), 38, + ACTIONS(1780), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98025,11 +98619,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28958] = 3, + [26045] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1168), 7, + ACTIONS(2914), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2912), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26099] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1834), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98037,7 +98682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1170), 38, + ACTIONS(1836), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98076,11 +98721,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29012] = 3, + [26153] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1136), 7, + ACTIONS(2918), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2916), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26207] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1782), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98088,7 +98784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1138), 38, + ACTIONS(1784), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98127,11 +98823,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29066] = 3, + [26261] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1116), 7, + ACTIONS(1786), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98139,7 +98835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1118), 38, + ACTIONS(1788), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98178,11 +98874,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29120] = 3, + [26315] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1444), 7, + ACTIONS(1842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98190,7 +98886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1446), 38, + ACTIONS(1844), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98229,63 +98925,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29174] = 4, - ACTIONS(2770), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2768), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2766), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29230] = 3, + [26369] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1570), 7, + ACTIONS(1790), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98293,7 +98937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1572), 38, + ACTIONS(1792), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98332,11 +98976,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29284] = 3, + [26423] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1358), 7, + ACTIONS(1798), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98344,7 +98988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1360), 38, + ACTIONS(1800), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98383,11 +99027,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29338] = 3, + [26477] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1362), 7, + ACTIONS(1806), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98395,7 +99039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1364), 38, + ACTIONS(1808), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98434,11 +99078,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29392] = 3, + [26531] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1382), 7, + ACTIONS(1910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98446,7 +99090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1384), 38, + ACTIONS(1912), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98485,13 +99129,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29446] = 4, - ACTIONS(2736), 1, - anon_sym_COLON_COLON, + [26585] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 15, + ACTIONS(662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98507,7 +99149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2634), 29, + ACTIONS(660), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98519,6 +99161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -98537,11 +99180,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29502] = 3, + [26639] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1562), 7, + ACTIONS(1818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98549,7 +99192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1564), 38, + ACTIONS(1820), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98588,13 +99231,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29556] = 4, - ACTIONS(2736), 1, - anon_sym_COLON_COLON, + [26693] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 15, + ACTIONS(654), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98610,7 +99251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2622), 29, + ACTIONS(652), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98622,6 +99263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -98640,11 +99282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29612] = 3, + [26747] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1386), 7, + ACTIONS(558), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98652,7 +99294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1388), 38, + ACTIONS(560), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98691,11 +99333,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29666] = 3, + [26801] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 15, + ACTIONS(538), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98711,7 +99353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2772), 30, + ACTIONS(536), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98723,7 +99365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -98742,11 +99384,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29720] = 3, + [26855] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2030), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2032), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26909] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1480), 7, + ACTIONS(2042), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98754,7 +99447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1482), 38, + ACTIONS(2044), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98793,11 +99486,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29774] = 3, + [26963] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2778), 15, + ACTIONS(2922), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98813,7 +99506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2776), 30, + ACTIONS(2920), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98825,7 +99518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -98844,11 +99537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29828] = 3, + [27017] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1484), 7, + ACTIONS(652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98856,7 +99549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1486), 38, + ACTIONS(654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98895,11 +99588,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29882] = 3, + [27071] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1526), 7, + ACTIONS(1698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98907,7 +99600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1528), 38, + ACTIONS(1700), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98946,61 +99639,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29936] = 3, + [27125] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1690), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2780), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1692), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27179] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1324), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29989] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1326), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27233] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2786), 15, + ACTIONS(2926), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99016,7 +99761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2784), 29, + ACTIONS(2924), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99028,6 +99773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -99046,112 +99792,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30042] = 3, + [27287] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2790), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(668), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2788), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(670), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27341] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(612), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30095] = 4, - ACTIONS(2646), 1, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(614), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27395] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1686), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2638), 28, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1688), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27449] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1674), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30150] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1676), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27503] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2794), 15, + ACTIONS(2405), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99167,7 +100016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2792), 29, + ACTIONS(2407), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99179,6 +100028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -99197,11 +100047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30203] = 3, + [27557] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 15, + ACTIONS(2930), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99217,7 +100067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2622), 29, + ACTIONS(2928), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99229,6 +100079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -99247,11 +100098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30256] = 3, + [27611] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(658), 15, + ACTIONS(2934), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99267,7 +100118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(656), 29, + ACTIONS(2932), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99279,6 +100130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -99297,11 +100149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30309] = 3, + [27665] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 15, + ACTIONS(2479), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99317,7 +100169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2634), 29, + ACTIONS(2481), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99329,6 +100181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -99347,61 +100200,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30362] = 3, + [27719] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2385), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1974), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2387), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1976), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27773] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1670), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30415] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1672), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27827] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 15, + ACTIONS(2938), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99417,7 +100322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2796), 29, + ACTIONS(2936), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99429,6 +100334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -99447,11 +100353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30468] = 3, + [27881] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(670), 15, + ACTIONS(2425), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99467,7 +100373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(668), 29, + ACTIONS(2427), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99479,6 +100385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -99497,11 +100404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30521] = 3, + [27935] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2802), 15, + ACTIONS(2942), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99517,7 +100424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2800), 29, + ACTIONS(2940), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99529,6 +100436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -99547,24 +100455,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30574] = 3, + [27989] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2806), 12, + ACTIONS(1630), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, sym_metavariable, - ACTIONS(2804), 32, + ACTIONS(1632), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99585,25 +100488,29 @@ 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, - [30627] = 4, - ACTIONS(2808), 1, - anon_sym_COLON_COLON, + [28043] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2946), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99619,10 +100526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 28, + ACTIONS(2944), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -99630,6 +100538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -99648,211 +100557,370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30682] = 3, + [28097] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2812), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1918), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2810), 29, + anon_sym_COLON_COLON, + 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, + [28151] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1914), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30735] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1916), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28205] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2816), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1830), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2814), 29, + anon_sym_COLON_COLON, + 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, + [28259] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1866), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30788] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + 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, + [28313] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1598), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1600), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28367] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2820), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2818), 29, + ACTIONS(1870), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30841] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + 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, + [28421] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2824), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2822), 29, + ACTIONS(1874), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30894] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1876), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28475] = 4, + ACTIONS(2948), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2828), 15, + ACTIONS(566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99868,11 +100936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2826), 29, + ACTIONS(568), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -99880,6 +100947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -99898,211 +100966,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30947] = 3, + [28531] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2668), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2664), 29, + ACTIONS(1882), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31000] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1884), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28585] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(626), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(624), 29, + ACTIONS(1846), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31053] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1848), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28639] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2832), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2830), 29, + ACTIONS(1894), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31106] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1896), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28693] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2836), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2834), 29, + ACTIONS(1582), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31159] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1584), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28747] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2840), 15, + ACTIONS(2952), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100118,7 +101190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2838), 29, + ACTIONS(2950), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100130,6 +101202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -100148,11 +101221,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31212] = 3, + [28801] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(646), 15, + ACTIONS(312), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100168,7 +101241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(644), 29, + ACTIONS(310), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100180,6 +101253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -100198,11 +101272,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31265] = 3, + [28855] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1898), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(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, + [28909] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2844), 15, + ACTIONS(678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100218,7 +101343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2842), 29, + ACTIONS(676), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100230,6 +101355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -100248,61 +101374,419 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31318] = 3, + [28963] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2848), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1906), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2846), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1908), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29017] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1922), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31371] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + 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, + [29071] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1934), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(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, + [29125] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1678), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(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, + [29179] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1602), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1604), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29233] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1586), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1588), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29287] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1990), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1992), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29341] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2006), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2008), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29395] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2852), 15, + ACTIONS(666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100318,7 +101802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2850), 29, + ACTIONS(664), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100330,6 +101814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -100348,128 +101833,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31424] = 3, + [29449] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2389), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2391), 29, + ACTIONS(1570), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31477] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1572), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29503] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(588), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(586), 29, + ACTIONS(2022), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31530] = 4, - ACTIONS(2858), 1, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2024), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29557] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2856), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1550), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2854), 29, + ACTIONS(1552), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100487,173 +101965,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [31585] = 3, + [29611] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(334), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(332), 29, + ACTIONS(1538), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31638] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1540), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29665] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2445), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2447), 29, + ACTIONS(1514), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31691] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1516), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29719] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2862), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2038), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2860), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2040), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29773] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1510), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31744] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1512), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29827] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(674), 15, + ACTIONS(638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100669,7 +102210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(672), 29, + ACTIONS(636), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100681,6 +102222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -100699,28 +102241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31797] = 4, - ACTIONS(2868), 1, - anon_sym_RBRACE, + [29881] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2866), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1488), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2864), 29, + ACTIONS(1490), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100738,23 +102271,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [31852] = 3, + [29935] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2872), 15, + ACTIONS(2956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100770,7 +102312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2870), 29, + ACTIONS(2954), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100782,6 +102324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -100800,11 +102343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31905] = 3, + [29989] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(662), 15, + ACTIONS(552), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100820,7 +102363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(660), 29, + ACTIONS(550), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100832,6 +102375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -100850,157 +102394,478 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31958] = 3, + [30043] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2876), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2046), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2874), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2048), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30097] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2026), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32011] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2028), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30151] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2880), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2002), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2878), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2004), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30205] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1998), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32064] = 21, - ACTIONS(77), 1, + anon_sym_POUND, anon_sym_LT, - ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2882), 1, + sym_metavariable, + ACTIONS(2000), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30259] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1518), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1520), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30313] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1454), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1456), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30367] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1994), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1996), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30421] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1986), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1988), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, - ACTIONS(2886), 1, - anon_sym_LPAREN, - ACTIONS(2888), 1, - anon_sym_STAR, - ACTIONS(2894), 1, - anon_sym_for, - ACTIONS(2896), 1, - anon_sym_AMP, - ACTIONS(2898), 1, - sym_metavariable, - STATE(1849), 1, - sym_scoped_type_identifier, - STATE(1945), 1, - sym_where_predicate, - STATE(1949), 1, - sym_generic_type, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2480), 1, - sym_scoped_identifier, + sym_self, + sym_super, + sym_crate, + [30475] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2884), 2, + ACTIONS(1446), 7, anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2892), 2, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1448), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + 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(922), 3, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(2335), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2890), 17, + [30529] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1506), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1508), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101018,26 +102883,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [32153] = 5, - ACTIONS(2900), 1, - anon_sym_POUND, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30583] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1098), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2471), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + ACTIONS(1982), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, sym_metavariable, - ACTIONS(2469), 32, + ACTIONS(1984), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101058,286 +102937,241 @@ 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, - [32210] = 3, + [30637] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2905), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2903), 29, + ACTIONS(1978), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32263] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2909), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2907), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32316] = 3, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1980), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30691] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2911), 29, + ACTIONS(1272), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32369] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1274), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30745] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2917), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2915), 29, + ACTIONS(1966), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32422] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1968), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30799] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2921), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2919), 29, + ACTIONS(1962), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32475] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1964), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30853] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2925), 12, + ACTIONS(1958), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, sym_metavariable, - ACTIONS(2923), 32, + ACTIONS(1960), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101358,73 +103192,80 @@ 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, - [32528] = 3, + [30907] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2929), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2927), 29, + ACTIONS(1950), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32581] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + 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, + [30961] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2933), 15, + ACTIONS(2668), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101440,7 +103281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2931), 29, + ACTIONS(2666), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101452,6 +103293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -101470,111 +103312,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32634] = 3, + [31015] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2937), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2935), 29, + ACTIONS(1930), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32687] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + 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, + [31069] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(650), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(648), 29, + ACTIONS(1854), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32740] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + 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, + [31123] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2941), 15, + ACTIONS(2960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101590,7 +103434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2939), 29, + ACTIONS(2958), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101602,6 +103446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -101620,11 +103465,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32793] = 3, + [31177] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 15, + ACTIONS(2964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101640,7 +103485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2943), 29, + ACTIONS(2962), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101652,6 +103497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -101670,11 +103516,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32846] = 3, + [31231] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2949), 15, + ACTIONS(2968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101690,7 +103536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2947), 29, + ACTIONS(2966), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101702,6 +103548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -101720,11 +103567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32899] = 3, + [31285] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(596), 15, + ACTIONS(2972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101740,7 +103587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(594), 29, + ACTIONS(2970), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101752,6 +103599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -101770,11 +103618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32952] = 3, + [31339] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(592), 15, + ACTIONS(2976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101790,7 +103638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(590), 29, + ACTIONS(2974), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101802,6 +103650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -101820,11 +103669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33005] = 3, + [31393] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2953), 15, + ACTIONS(2980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101840,7 +103689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2951), 29, + ACTIONS(2978), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101852,6 +103701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -101870,11 +103720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33058] = 3, + [31447] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2433), 15, + ACTIONS(572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101890,7 +103740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2435), 29, + ACTIONS(570), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101902,6 +103752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -101920,111 +103771,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33111] = 3, + [31501] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2957), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2955), 29, + ACTIONS(1718), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33164] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + 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, + [31555] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2961), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1474), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2959), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1476), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31609] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1714), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33217] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + 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, + [31663] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(622), 15, + ACTIONS(2984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102040,7 +103944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(620), 29, + ACTIONS(2982), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102052,6 +103956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102070,111 +103975,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33270] = 3, + [31717] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(630), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1710), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(628), 29, + anon_sym_COLON_COLON, + 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, + [31771] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1702), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33323] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + 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, + [31825] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(666), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1358), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(664), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1360), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31879] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1654), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33376] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1656), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31933] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2965), 15, + ACTIONS(2664), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102190,7 +104199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2963), 29, + ACTIONS(2662), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102202,6 +104211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102220,61 +104230,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33429] = 3, + [31987] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1646), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2967), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1648), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32041] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1638), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33482] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1640), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32095] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1466), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1468), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32149] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2973), 15, + ACTIONS(2988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102290,7 +104403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2971), 29, + ACTIONS(2986), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102302,6 +104415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102320,11 +104434,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33535] = 3, + [32203] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1634), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1636), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32257] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2977), 15, + ACTIONS(576), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102340,7 +104505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2975), 29, + ACTIONS(574), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102352,6 +104517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102370,11 +104536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33588] = 3, + [32311] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2981), 15, + ACTIONS(2992), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102390,7 +104556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2979), 29, + ACTIONS(2990), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102402,6 +104568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102420,11 +104587,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33641] = 3, + [32365] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(638), 15, + ACTIONS(622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102440,7 +104607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(636), 29, + ACTIONS(620), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102452,6 +104619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102470,11 +104638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33694] = 3, + [32419] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(654), 15, + ACTIONS(634), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102490,7 +104658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(652), 29, + ACTIONS(632), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102502,6 +104670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102520,11 +104689,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33747] = 3, + [32473] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1578), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1580), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32527] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1574), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1576), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32581] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1148), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1150), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32635] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2985), 15, + ACTIONS(2784), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102540,7 +104862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2983), 29, + ACTIONS(2780), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102552,6 +104874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102570,11 +104893,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33800] = 3, + [32689] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(576), 15, + ACTIONS(1558), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1560), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32743] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1144), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1146), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32797] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(614), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102590,7 +105015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(574), 29, + ACTIONS(612), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102602,6 +105027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102620,11 +105046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33853] = 3, + [32851] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2684), 15, + ACTIONS(2996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102640,7 +105066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2680), 29, + ACTIONS(2994), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102652,6 +105078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102670,11 +105097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33906] = 3, + [32905] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2989), 15, + ACTIONS(618), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102690,7 +105117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2987), 29, + ACTIONS(616), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102702,6 +105129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102720,11 +105148,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33959] = 3, + [32959] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(580), 15, + ACTIONS(1156), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1158), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33013] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(546), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102740,7 +105219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(578), 29, + ACTIONS(544), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102752,6 +105231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102770,11 +105250,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34012] = 3, + [33067] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(642), 15, + ACTIONS(2768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102790,7 +105270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(640), 29, + ACTIONS(2764), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102802,6 +105282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102820,11 +105301,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34065] = 3, + [33121] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1526), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1528), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33175] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2993), 15, + ACTIONS(3000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102840,7 +105372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2991), 29, + ACTIONS(2998), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102852,6 +105384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102870,11 +105403,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34118] = 3, + [33229] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(634), 15, + ACTIONS(1470), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1472), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33283] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1160), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1162), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33337] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102890,7 +105525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(632), 29, + ACTIONS(3002), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102902,6 +105537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102920,11 +105556,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34171] = 3, + [33391] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 15, + ACTIONS(3008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102940,7 +105576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2614), 29, + ACTIONS(3006), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102952,6 +105588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102970,11 +105607,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34224] = 3, + [33445] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2997), 15, + ACTIONS(2429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102990,7 +105627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2995), 29, + ACTIONS(2431), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103002,6 +105639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -103020,11 +105658,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34277] = 3, + [33499] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1414), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1416), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33553] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 15, + ACTIONS(3012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103040,7 +105729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2999), 29, + ACTIONS(3010), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103052,6 +105741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -103070,11 +105760,368 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34330] = 3, + [33607] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1410), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1412), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33661] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1386), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1388), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33715] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1362), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1364), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33769] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1296), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1298), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33823] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1276), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1278), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33877] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1168), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1170), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33931] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1172), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1174), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33985] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3005), 15, + ACTIONS(3016), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103090,7 +106137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3003), 29, + ACTIONS(3014), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103102,6 +106149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -103120,11 +106168,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34383] = 3, + [34039] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1176), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1178), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34093] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1180), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1182), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34147] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1184), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1186), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34201] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3009), 15, + ACTIONS(2624), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103140,7 +106341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3007), 29, + ACTIONS(2622), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103152,6 +106353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -103170,61 +106372,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34436] = 3, + [34255] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3013), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1264), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3011), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1266), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34309] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1260), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34489] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1262), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34363] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(560), 15, + ACTIONS(3020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103240,7 +106494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(558), 29, + ACTIONS(3018), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103252,6 +106506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -103270,74 +106525,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34542] = 3, + [34417] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3017), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3015), 29, + ACTIONS(1810), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34595] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + 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, + [34471] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3021), 12, + ACTIONS(1814), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, sym_metavariable, - ACTIONS(3019), 32, + ACTIONS(1816), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103358,73 +106609,131 @@ 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, - [34648] = 3, + [34525] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3025), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1188), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3023), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1190), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34579] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1252), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34701] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1254), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34633] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(584), 15, + ACTIONS(3024), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103440,7 +106749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(582), 29, + ACTIONS(3022), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103452,6 +106761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -103470,57 +106780,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34754] = 21, - ACTIONS(77), 1, + [34687] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1248), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2882), 1, - sym_identifier, - ACTIONS(2886), 1, - anon_sym_LPAREN, - ACTIONS(2888), 1, - anon_sym_STAR, - ACTIONS(2894), 1, - anon_sym_for, - ACTIONS(2896), 1, - anon_sym_AMP, - ACTIONS(2898), 1, sym_metavariable, - STATE(1849), 1, - sym_scoped_type_identifier, - STATE(1945), 1, - sym_where_predicate, - STATE(1949), 1, - sym_generic_type, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2480), 1, - sym_scoped_identifier, + ACTIONS(1250), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34741] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2892), 2, + ACTIONS(1240), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1242), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + 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(3027), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(922), 3, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(2335), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2890), 17, + [34795] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1196), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1198), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103538,11 +106912,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [34843] = 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, + sym_self, + sym_super, + sym_crate, + [34849] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3025), 15, + ACTIONS(642), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103558,7 +106953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3023), 29, + ACTIONS(640), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103570,6 +106965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -103588,24 +106984,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34896] = 3, + [34903] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3031), 12, + ACTIONS(1236), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, sym_metavariable, - ACTIONS(3029), 32, + ACTIONS(1238), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103626,136 +107017,139 @@ 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, - [34949] = 3, + [34957] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(600), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(598), 29, + ACTIONS(1232), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35002] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1234), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35011] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3035), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3033), 29, + ACTIONS(1228), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35055] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1230), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35065] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3039), 12, + ACTIONS(1204), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, sym_metavariable, - ACTIONS(3037), 32, + ACTIONS(1206), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103776,23 +107170,29 @@ 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, - [35108] = 3, + [35119] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3043), 15, + ACTIONS(658), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103808,7 +107208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3041), 29, + ACTIONS(656), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103820,6 +107220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -103838,24 +107239,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35161] = 3, + [35173] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3047), 12, + ACTIONS(1220), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, sym_metavariable, - ACTIONS(3045), 32, + ACTIONS(1222), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103876,52 +107272,134 @@ 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, - [35214] = 3, + [35227] = 18, + ACTIONS(3028), 1, + anon_sym_LBRACK, + ACTIONS(3034), 1, + anon_sym_as, + ACTIONS(3036), 1, + anon_sym_EQ, + ACTIONS(3040), 1, + anon_sym_AMP, + ACTIONS(3044), 1, + anon_sym_DOT_DOT, + ACTIONS(3046), 1, + anon_sym_AMP_AMP, + ACTIONS(3048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3050), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, + anon_sym_CARET, + ACTIONS(3058), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 15, + ACTIONS(3030), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(3042), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3056), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3032), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3054), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3026), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35310] = 14, + ACTIONS(3028), 1, + anon_sym_LBRACK, + ACTIONS(3034), 1, + anon_sym_as, + ACTIONS(3040), 1, anon_sym_AMP, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - anon_sym_DASH, + ACTIONS(3050), 1, anon_sym_PIPE, + ACTIONS(3052), 1, anon_sym_CARET, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3030), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3042), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3032), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3049), 29, + ACTIONS(3062), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3060), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -103938,46 +107416,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35267] = 3, + [35385] = 17, + ACTIONS(3028), 1, + anon_sym_LBRACK, + ACTIONS(3034), 1, + anon_sym_as, + ACTIONS(3040), 1, + anon_sym_AMP, + ACTIONS(3044), 1, + anon_sym_DOT_DOT, + ACTIONS(3046), 1, + anon_sym_AMP_AMP, + ACTIONS(3050), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, + anon_sym_CARET, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3062), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(678), 15, + ACTIONS(3030), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3042), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3032), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(676), 29, + ACTIONS(3054), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3060), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, + anon_sym_else, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103988,62 +107480,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35320] = 20, - ACTIONS(3055), 1, + [35466] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3066), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_EQ, - ACTIONS(3069), 1, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3064), 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, + [35519] = 18, + ACTIONS(3028), 1, + anon_sym_LBRACK, + ACTIONS(3034), 1, + anon_sym_as, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, + ACTIONS(3070), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3071), 2, + ACTIONS(3042), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3053), 7, + ACTIONS(3068), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_COMMA, - ACTIONS(3087), 10, + anon_sym_else, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104054,34 +107595,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35406] = 7, - ACTIONS(3055), 1, + [35602] = 10, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3034), 1, + anon_sym_as, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 2, + ACTIONS(3030), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3042), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3093), 13, - anon_sym_PLUS, + ACTIONS(3032), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3062), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3091), 25, + ACTIONS(3060), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104089,8 +107634,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -104107,34 +107652,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35466] = 7, - ACTIONS(3055), 1, + [35669] = 12, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3034), 1, + anon_sym_as, + ACTIONS(3040), 1, + anon_sym_AMP, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 2, + ACTIONS(3030), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3042), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3097), 13, - anon_sym_PLUS, + ACTIONS(3056), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3032), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3062), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3095), 25, + ACTIONS(3060), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104142,8 +107693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -104160,26 +107711,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35526] = 7, - ACTIONS(2618), 1, - anon_sym_LBRACE, - ACTIONS(2620), 1, - anon_sym_COLON_COLON, - ACTIONS(3099), 1, - anon_sym_BANG, - STATE(1090), 1, - sym_field_initializer_list, + [35740] = 7, + ACTIONS(3028), 1, + anon_sym_LBRACK, + ACTIONS(3044), 1, + anon_sym_DOT_DOT, + ACTIONS(3058), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(3042), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3074), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -104187,16 +107738,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(566), 24, + ACTIONS(3072), 26, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -104212,102 +107764,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35586] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2856), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2854), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35638] = 18, - ACTIONS(3055), 1, + anon_sym_GT_GT_EQ, + [35801] = 13, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3071), 2, + ACTIONS(3042), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3101), 18, + ACTIONS(3062), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3060), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104316,6 +107808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104326,54 +107825,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35720] = 20, - ACTIONS(3055), 1, + [35874] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3071), 2, + ACTIONS(3042), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3105), 7, + ACTIONS(3076), 8, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104381,7 +107880,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(3087), 10, + anon_sym_else, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104392,27 +107892,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35806] = 9, - ACTIONS(3055), 1, + [35961] = 7, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3073), 1, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 2, + ACTIONS(3042), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3109), 10, + ACTIONS(3086), 13, anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104422,7 +107917,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 24, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3084), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104430,7 +107927,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -104447,36 +107946,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35870] = 8, - ACTIONS(3055), 1, + [36022] = 18, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3073), 1, + ACTIONS(3040), 1, + anon_sym_AMP, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3089), 1, + ACTIONS(3046), 1, + anon_sym_AMP_AMP, + ACTIONS(3048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3050), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, + anon_sym_CARET, + ACTIONS(3058), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3109), 13, + ACTIONS(3030), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3042), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3032), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 24, + ACTIONS(3054), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(282), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104485,12 +108000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_else, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104501,52 +108011,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35932] = 18, - ACTIONS(3055), 1, + [36105] = 16, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3113), 1, + ACTIONS(3062), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3071), 2, + ACTIONS(3042), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3111), 18, + ACTIONS(3060), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104555,6 +108061,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104565,34 +108074,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36014] = 7, - ACTIONS(3055), 1, + [36184] = 5, + ACTIONS(3088), 1, + anon_sym_POUND, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1175), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2509), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2507), 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, + [36241] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(3091), 1, + sym_identifier, + ACTIONS(3095), 1, + anon_sym_LPAREN, + ACTIONS(3097), 1, + anon_sym_STAR, + ACTIONS(3103), 1, + anon_sym_for, + ACTIONS(3105), 1, + anon_sym_AMP, + ACTIONS(3107), 1, + sym_metavariable, + STATE(1888), 1, + sym_scoped_type_identifier, + STATE(1957), 1, + sym_generic_type, + STATE(2042), 1, + sym_where_predicate, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2621), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3093), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(3101), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(2270), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3099), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [36330] = 11, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3034), 1, + anon_sym_as, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 2, + ACTIONS(3030), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3042), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3117), 13, - anon_sym_PLUS, + ACTIONS(3056), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3032), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3062), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3115), 25, + ACTIONS(3060), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104600,8 +108234,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -104618,42 +108252,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36074] = 14, - ACTIONS(3055), 1, + [36399] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3111), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3109), 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, + [36452] = 4, + ACTIONS(3117), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3115), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3113), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [36507] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3121), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3119), 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, + [36560] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(3091), 1, + sym_identifier, + ACTIONS(3095), 1, + anon_sym_LPAREN, + ACTIONS(3097), 1, + anon_sym_STAR, + ACTIONS(3103), 1, + anon_sym_for, + ACTIONS(3105), 1, + anon_sym_AMP, + ACTIONS(3107), 1, + sym_metavariable, + STATE(1888), 1, + sym_scoped_type_identifier, + STATE(1957), 1, + sym_generic_type, + STATE(2042), 1, + sym_where_predicate, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2621), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3101), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(3123), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(2270), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3099), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [36649] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3127), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3125), 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, + [36702] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3131), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3129), 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, + [36755] = 18, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3079), 1, + ACTIONS(3046), 1, + anon_sym_AMP_AMP, + ACTIONS(3048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, + ACTIONS(3135), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3042), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3109), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3107), 24, + ACTIONS(3054), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3133), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104662,12 +108625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_else, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104678,52 +108636,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36148] = 18, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(3055), 1, + [36838] = 8, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3071), 2, + ACTIONS(3042), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + ACTIONS(3062), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(282), 18, + ACTIONS(3060), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104732,6 +108674,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104742,26 +108691,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36230] = 3, + [36901] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2866), 14, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(3139), 12, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_POUND, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2864), 29, + ACTIONS(3137), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104779,51 +108726,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [36282] = 11, - ACTIONS(3055), 1, + [36954] = 9, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3073), 1, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3042), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3109), 6, + ACTIONS(3062), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3107), 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3060), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104832,6 +108780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_else, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -104848,122 +108797,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36350] = 18, - ACTIONS(3055), 1, + [37019] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3121), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3119), 18, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + ACTIONS(3078), 1, anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36432] = 16, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, - anon_sym_DOT_DOT, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3109), 1, + ACTIONS(3080), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3071), 2, + ACTIONS(3042), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3107), 20, + ACTIONS(3141), 8, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_else, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104974,50 +108864,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36510] = 17, - ACTIONS(3055), 1, + [37106] = 18, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3079), 1, + ACTIONS(3048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3109), 1, + ACTIONS(3145), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3071), 2, + ACTIONS(3042), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3107), 19, + ACTIONS(3143), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105026,7 +108918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym_else, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105037,155 +108929,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36590] = 13, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, - anon_sym_DOT_DOT, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, + [37189] = 4, + ACTIONS(3151), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3109), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3107), 24, - anon_sym_SEMI, + ACTIONS(3149), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36662] = 12, - ACTIONS(3055), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3069), 1, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3109), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3107), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36732] = 10, - ACTIONS(3055), 1, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3147), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37244] = 7, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3073), 1, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3042), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3155), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3109), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 24, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3153), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105193,7 +109015,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -105210,52 +109034,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36798] = 18, - ACTIONS(3055), 1, + [37305] = 18, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3044), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3125), 1, + ACTIONS(3159), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3071), 2, + ACTIONS(3042), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 18, + ACTIONS(3157), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105264,6 +109088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_else, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105274,113 +109099,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36880] = 18, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, - anon_sym_DOT_DOT, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3129), 1, - anon_sym_EQ, + [37388] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3127), 18, - anon_sym_SEMI, + ACTIONS(3115), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36962] = 17, - ACTIONS(77), 1, + anon_sym_LBRACK, + anon_sym_POUND, anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(890), 1, anon_sym_COLON_COLON, - ACTIONS(3131), 1, - sym_identifier, - ACTIONS(3133), 1, - anon_sym_RPAREN, - ACTIONS(3137), 1, - anon_sym_COMMA, - ACTIONS(3141), 1, - sym_metavariable, - STATE(1703), 1, - sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1085), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2000), 2, - sym_meta_item, - sym__literal, - ACTIONS(3139), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, sym_integer_literal, + aux_sym_string_literal_token1, sym_char_literal, - ACTIONS(3135), 19, + sym_metavariable, + ACTIONS(3113), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105398,56 +109136,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_const, anon_sym_default, anon_sym_union, - [37041] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(2898), 1, - sym_metavariable, - ACTIONS(3143), 1, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, - ACTIONS(3145), 1, - anon_sym_default, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1364), 1, - sym_scoped_type_identifier, - STATE(1395), 1, - sym_generic_type, - STATE(1428), 1, - sym_function_type, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2420), 1, - sym_function_modifiers, - STATE(2480), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, sym_self, sym_super, sym_crate, - ACTIONS(2892), 18, + [37440] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3149), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3147), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105465,121 +109185,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_const, + anon_sym_default, anon_sym_union, - [37128] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2506), 1, - anon_sym_COLON_COLON, - ACTIONS(3147), 1, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, - ACTIONS(3151), 1, - anon_sym_default, - ACTIONS(3153), 1, - sym_metavariable, - STATE(787), 1, - sym_scoped_type_identifier, - STATE(1048), 1, - sym_generic_type, - STATE(1064), 1, - sym_function_type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2390), 1, - sym_function_modifiers, - STATE(2416), 1, - sym_scoped_identifier, - STATE(2492), 1, - sym_bracketed_type, - STATE(2493), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2514), 3, sym_self, sym_super, sym_crate, - ACTIONS(3149), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [37215] = 21, + [37492] = 7, + ACTIONS(2642), 1, + anon_sym_LBRACE, + ACTIONS(2644), 1, + anon_sym_COLON_COLON, + ACTIONS(3161), 1, + anon_sym_BANG, + STATE(1021), 1, + sym_field_initializer_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(566), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(568), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37552] = 17, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2506), 1, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3151), 1, - anon_sym_default, - ACTIONS(3153), 1, - sym_metavariable, - ACTIONS(3155), 1, + ACTIONS(3163), 1, sym_identifier, - STATE(784), 1, - sym_scoped_type_identifier, - STATE(1050), 1, - sym_generic_type, - STATE(1062), 1, - sym_function_type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2390), 1, - sym_function_modifiers, - STATE(2416), 1, + ACTIONS(3165), 1, + anon_sym_RPAREN, + ACTIONS(3169), 1, + anon_sym_COMMA, + ACTIONS(3173), 1, + sym_metavariable, + STATE(1704), 1, sym_scoped_identifier, - STATE(2492), 1, - sym_bracketed_type, - STATE(2493), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2514), 3, + STATE(2535), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1129), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2085), 2, + sym_meta_item, + sym__literal, + ACTIONS(3171), 3, sym_self, sym_super, sym_crate, - ACTIONS(3149), 18, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3167), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105597,55 +109310,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_default, anon_sym_union, - [37302] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(916), 1, + [37631] = 6, + ACTIONS(2686), 1, + anon_sym_BANG, + ACTIONS(2688), 1, anon_sym_COLON_COLON, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2882), 1, + ACTIONS(3175), 1, sym_identifier, - ACTIONS(2886), 1, - anon_sym_LPAREN, - ACTIONS(2888), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2682), 16, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2894), 1, - anon_sym_for, - ACTIONS(2896), 1, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2898), 1, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2680), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37688] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2528), 1, + anon_sym_fn, + ACTIONS(2536), 1, + anon_sym_COLON_COLON, + ACTIONS(3177), 1, + sym_identifier, + ACTIONS(3181), 1, + anon_sym_default, + ACTIONS(3183), 1, sym_metavariable, - STATE(1849), 1, + STATE(792), 1, sym_scoped_type_identifier, - STATE(1852), 1, - sym_where_predicate, - STATE(1949), 1, + STATE(838), 1, sym_generic_type, - STATE(2383), 1, + STATE(1083), 1, + sym_function_type, + STATE(1230), 1, + sym_for_lifetimes, + STATE(2431), 1, + sym_function_modifiers, + STATE(2456), 1, + sym_scoped_identifier, + STATE(2540), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2541), 1, sym_generic_type_with_turbofish, - STATE(2480), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2892), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(922), 3, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2544), 3, sym_self, sym_super, sym_crate, - STATE(2335), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2890), 17, + ACTIONS(3179), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105663,22 +109428,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37387] = 3, + anon_sym_union, + [37775] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1834), 10, + ACTIONS(2986), 10, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SQUOTE, - anon_sym_POUND, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(1836), 32, + ACTIONS(2988), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105702,82 +109468,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_for, anon_sym_impl, - anon_sym_pub, anon_sym_union, anon_sym_unsafe, anon_sym_extern, anon_sym_dyn, + sym_mutable_specifier, sym_identifier, sym_self, sym_super, sym_crate, - [37438] = 6, - ACTIONS(2644), 1, - anon_sym_BANG, - ACTIONS(2646), 1, - anon_sym_COLON_COLON, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2640), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2638), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37495] = 3, + [37826] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2800), 10, + ACTIONS(1324), 10, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_PLUS, anon_sym_STAR, anon_sym_SQUOTE, + anon_sym_POUND, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2802), 32, + ACTIONS(1326), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105801,63 +109516,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_for, anon_sym_impl, + anon_sym_pub, anon_sym_union, anon_sym_unsafe, anon_sym_extern, anon_sym_dyn, - sym_mutable_specifier, sym_identifier, sym_self, sym_super, sym_crate, - [37546] = 20, + [37877] = 21, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2882), 1, - sym_identifier, - ACTIONS(2886), 1, - anon_sym_LPAREN, - ACTIONS(2888), 1, - anon_sym_STAR, - ACTIONS(2894), 1, - anon_sym_for, - ACTIONS(2896), 1, - anon_sym_AMP, - ACTIONS(2898), 1, + ACTIONS(3107), 1, sym_metavariable, - STATE(1849), 1, + ACTIONS(3185), 1, + sym_identifier, + ACTIONS(3187), 1, + anon_sym_default, + STATE(1228), 1, + sym_for_lifetimes, + STATE(1376), 1, sym_scoped_type_identifier, - STATE(1945), 1, - sym_where_predicate, - STATE(1949), 1, + STATE(1401), 1, sym_generic_type, - STATE(2383), 1, + STATE(1441), 1, + sym_function_type, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2480), 1, + STATE(2463), 1, + sym_function_modifiers, + STATE(2621), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2892), 2, - anon_sym_default, - anon_sym_union, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(2335), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2890), 17, + ACTIONS(3101), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105875,7 +109590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37631] = 21, + anon_sym_union, + [37964] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(700), 1, @@ -105886,32 +109602,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2898), 1, + ACTIONS(3107), 1, sym_metavariable, - ACTIONS(3145), 1, + ACTIONS(3187), 1, anon_sym_default, - ACTIONS(3159), 1, + ACTIONS(3189), 1, sym_identifier, - STATE(1214), 1, + STATE(1228), 1, sym_for_lifetimes, - STATE(1362), 1, + STATE(1375), 1, sym_scoped_type_identifier, - STATE(1397), 1, + STATE(1404), 1, sym_generic_type, - STATE(1417), 1, + STATE(1436), 1, sym_function_type, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2420), 1, + STATE(2463), 1, sym_function_modifiers, - STATE(2480), 1, + STATE(2621), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -105922,7 +109638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2892), 18, + ACTIONS(3101), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105941,156 +109657,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37718] = 5, - ACTIONS(2674), 1, - anon_sym_COLON_COLON, - ACTIONS(3099), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(568), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(566), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37772] = 16, + [38051] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(890), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(3131), 1, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(3091), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(3095), 1, + anon_sym_LPAREN, + ACTIONS(3097), 1, + anon_sym_STAR, + ACTIONS(3103), 1, + anon_sym_for, + ACTIONS(3105), 1, + anon_sym_AMP, + ACTIONS(3107), 1, sym_metavariable, - ACTIONS(3161), 1, - anon_sym_RPAREN, - STATE(1703), 1, - sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(1888), 1, + sym_scoped_type_identifier, + STATE(1891), 1, + sym_where_predicate, + STATE(1957), 1, + sym_generic_type, + STATE(2428), 1, sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2621), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1085), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2227), 2, - sym_meta_item, - sym__literal, - ACTIONS(3139), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3135), 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, + ACTIONS(3101), 2, anon_sym_default, anon_sym_union, - [37848] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(732), 1, - anon_sym_DASH, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(890), 1, - anon_sym_COLON_COLON, - ACTIONS(3163), 1, - sym_identifier, - ACTIONS(3169), 1, - sym_metavariable, - STATE(1456), 1, - sym_scoped_identifier, - STATE(1485), 1, - sym__literal_pattern, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2374), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(738), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3167), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1431), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(734), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3165), 19, + STATE(2270), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3099), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106108,109 +109722,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, - anon_sym_union, - [37924] = 16, + [38136] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(890), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(3131), 1, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(3091), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(3095), 1, + anon_sym_LPAREN, + ACTIONS(3097), 1, + anon_sym_STAR, + ACTIONS(3103), 1, + anon_sym_for, + ACTIONS(3105), 1, + anon_sym_AMP, + ACTIONS(3107), 1, sym_metavariable, - ACTIONS(3171), 1, - anon_sym_RPAREN, - STATE(1703), 1, - sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(1888), 1, + sym_scoped_type_identifier, + STATE(1957), 1, + sym_generic_type, + STATE(2042), 1, + sym_where_predicate, + STATE(2428), 1, sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2621), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1085), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2227), 2, - sym_meta_item, - sym__literal, - ACTIONS(3139), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3135), 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, + ACTIONS(3101), 2, anon_sym_default, anon_sym_union, - [38000] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(732), 1, - anon_sym_DASH, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(890), 1, - anon_sym_COLON_COLON, - ACTIONS(3173), 1, - sym_identifier, - ACTIONS(3179), 1, - sym_metavariable, - STATE(1444), 1, - sym_scoped_identifier, - STATE(1500), 1, - sym__literal_pattern, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2374), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(738), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3177), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1431), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(734), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3175), 19, + STATE(2270), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3099), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106228,160 +109787,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, - anon_sym_union, - [38076] = 6, - ACTIONS(2576), 1, - anon_sym_BANG, - ACTIONS(3181), 1, - anon_sym_COLON_COLON, - STATE(1090), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(568), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + [38221] = 21, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(566), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38132] = 5, - ACTIONS(2672), 1, - anon_sym_BANG, - ACTIONS(3183), 1, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2528), 1, + anon_sym_fn, + ACTIONS(2536), 1, anon_sym_COLON_COLON, + ACTIONS(3181), 1, + anon_sym_default, + ACTIONS(3183), 1, + sym_metavariable, + ACTIONS(3191), 1, + sym_identifier, + STATE(791), 1, + sym_scoped_type_identifier, + STATE(835), 1, + sym_generic_type, + STATE(1101), 1, + sym_function_type, + STATE(1230), 1, + sym_for_lifetimes, + STATE(2431), 1, + sym_function_modifiers, + STATE(2456), 1, + sym_scoped_identifier, + STATE(2540), 1, + sym_bracketed_type, + STATE(2541), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2638), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38185] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2594), 16, - anon_sym_PLUS, - anon_sym_STAR, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2544), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3179), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [38308] = 6, + ACTIONS(2608), 1, anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2596), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3193), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38234] = 3, + STATE(1021), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 16, + ACTIONS(566), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106395,13 +109879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2632), 24, + ACTIONS(568), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106420,21 +109903,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38283] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3187), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + [38364] = 16, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(732), 1, + anon_sym_DASH, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3195), 1, + sym_identifier, + ACTIONS(3201), 1, sym_metavariable, - ACTIONS(3185), 31, + STATE(1453), 1, + sym_scoped_identifier, + STATE(1474), 1, + sym__literal_pattern, + STATE(2378), 1, + sym_generic_type_with_turbofish, + STATE(2426), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(738), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3199), 3, + sym_self, + sym_super, + sym_crate, + STATE(1430), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(734), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3197), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106452,36 +109961,49 @@ 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, - [38332] = 4, - ACTIONS(3193), 1, + [38440] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(732), 1, + anon_sym_DASH, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(888), 1, anon_sym_COLON_COLON, + ACTIONS(3203), 1, + sym_identifier, + ACTIONS(3209), 1, + sym_metavariable, + STATE(1457), 1, + sym_scoped_identifier, + STATE(1477), 1, + sym__literal_pattern, + STATE(2378), 1, + sym_generic_type_with_turbofish, + STATE(2426), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3191), 8, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3189), 31, + ACTIONS(738), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3207), 3, + sym_self, + sym_super, + sym_crate, + STATE(1430), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(734), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3205), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106499,36 +110021,49 @@ 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, + [38516] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(888), 1, + anon_sym_COLON_COLON, + ACTIONS(3163), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [38383] = 4, - ACTIONS(3195), 1, - anon_sym_LPAREN, + ACTIONS(3173), 1, + sym_metavariable, + ACTIONS(3211), 1, + anon_sym_RPAREN, + STATE(1704), 1, + sym_scoped_identifier, + STATE(2378), 1, + sym_generic_type_with_turbofish, + STATE(2535), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3191), 8, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3189), 31, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1129), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2225), 2, + sym_meta_item, + sym__literal, + ACTIONS(3171), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3167), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106546,28 +110081,19 @@ 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, - [38434] = 3, + [38592] = 5, + ACTIONS(2700), 1, + anon_sym_COLON_COLON, + ACTIONS(3161), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 16, + ACTIONS(566), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106581,13 +110107,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2604), 24, + ACTIONS(568), 24, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106606,22 +110132,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38483] = 15, + [38646] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, - ACTIONS(890), 1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3131), 1, + ACTIONS(3163), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(3173), 1, sym_metavariable, - STATE(1703), 1, + ACTIONS(3213), 1, + anon_sym_RPAREN, + STATE(1704), 1, sym_scoped_identifier, - STATE(2359), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2535), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -106629,13 +110157,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1085), 2, + STATE(1129), 2, sym_string_literal, sym_boolean_literal, - STATE(2227), 2, + STATE(2225), 2, sym_meta_item, sym__literal, - ACTIONS(3139), 3, + ACTIONS(3171), 3, sym_self, sym_super, sym_crate, @@ -106644,7 +110172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3135), 19, + ACTIONS(3167), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106664,62 +110192,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [38556] = 23, - ACTIONS(368), 1, + [38722] = 23, + ACTIONS(522), 1, anon_sym_RBRACK, - ACTIONS(3055), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3197), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3215), 1, anon_sym_SEMI, - ACTIONS(3199), 1, + ACTIONS(3217), 1, anon_sym_COMMA, - ACTIONS(3203), 1, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - STATE(2070), 1, + STATE(1938), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3054), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3082), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38811] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2630), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + anon_sym_DOT, + ACTIONS(2632), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106730,11 +110304,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38645] = 3, + [38860] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2925), 9, + ACTIONS(3139), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -106744,7 +110318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2923), 31, + ACTIONS(3137), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106776,77 +110350,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38694] = 23, - ACTIONS(512), 1, - anon_sym_RBRACK, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3205), 1, - anon_sym_SEMI, - ACTIONS(3207), 1, - anon_sym_COMMA, - STATE(1937), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3087), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38783] = 3, + [38909] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 16, + ACTIONS(2658), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -106863,7 +110371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2612), 24, + ACTIONS(2660), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106888,11 +110396,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38832] = 3, + [38958] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3211), 9, + ACTIONS(3225), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -106902,7 +110410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3209), 31, + ACTIONS(3223), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106934,15 +110442,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38881] = 5, - ACTIONS(2576), 1, + [39007] = 5, + ACTIONS(2608), 1, anon_sym_BANG, - ACTIONS(3213), 1, + ACTIONS(3227), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106958,7 +110466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 23, + ACTIONS(568), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106982,11 +110490,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38934] = 3, + [39060] = 4, + ACTIONS(3233), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3231), 8, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3229), 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, + [39111] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3217), 9, + ACTIONS(3237), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -106996,7 +110551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3215), 31, + ACTIONS(3235), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107028,11 +110583,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38983] = 3, + [39160] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3021), 9, + ACTIONS(3241), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -107042,7 +110597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3019), 31, + ACTIONS(3239), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107074,60 +110629,200 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39032] = 22, - ACTIONS(384), 1, - anon_sym_RPAREN, - ACTIONS(3055), 1, + [39209] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3111), 9, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3109), 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, + [39258] = 23, + ACTIONS(378), 1, + anon_sym_RBRACK, + ACTIONS(3028), 1, + anon_sym_LBRACK, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3219), 1, + ACTIONS(3243), 1, + anon_sym_SEMI, + ACTIONS(3245), 1, anon_sym_COMMA, - STATE(1971), 1, - aux_sym_arguments_repeat1, + STATE(2113), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3030), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3056), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3219), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3032), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3054), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3082), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39347] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2638), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2640), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39396] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(2650), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + anon_sym_DOT, + ACTIONS(2652), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107138,13 +110833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39118] = 4, - ACTIONS(2700), 1, + [39445] = 5, + ACTIONS(2694), 1, + anon_sym_BANG, + ACTIONS(3247), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2684), 15, + ACTIONS(2682), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107184,48 +110881,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39168] = 18, + [39498] = 15, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(916), 1, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(2898), 1, - sym_metavariable, - ACTIONS(3145), 1, - anon_sym_default, - ACTIONS(3221), 1, + ACTIONS(3163), 1, sym_identifier, - ACTIONS(3223), 1, - anon_sym_fn, - STATE(1865), 1, - sym_scoped_type_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2448), 1, - sym_generic_type, - STATE(2480), 1, + ACTIONS(3173), 1, + sym_metavariable, + STATE(1704), 1, sym_scoped_identifier, - STATE(2533), 1, - sym_function_modifiers, + STATE(2378), 1, + sym_generic_type_with_turbofish, + STATE(2535), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1129), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2225), 2, + sym_meta_item, + sym__literal, + ACTIONS(3171), 3, sym_self, sym_super, sym_crate, - ACTIONS(2892), 18, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3167), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [39571] = 4, + ACTIONS(3249), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3231), 8, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3229), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107243,38 +110972,51 @@ 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, - [39246] = 18, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [39622] = 18, ACTIONS(77), 1, anon_sym_LT, ACTIONS(714), 1, anon_sym_extern, ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2898), 1, + ACTIONS(3107), 1, sym_metavariable, - ACTIONS(3145), 1, + ACTIONS(3187), 1, anon_sym_default, - ACTIONS(3225), 1, + ACTIONS(3251), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3253), 1, anon_sym_fn, - STATE(1871), 1, + STATE(1849), 1, sym_scoped_type_identifier, - STATE(2383), 1, + STATE(2428), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2429), 1, sym_generic_type_with_turbofish, - STATE(2418), 1, - sym_function_modifiers, - STATE(2448), 1, + STATE(2492), 1, sym_generic_type, - STATE(2480), 1, + STATE(2550), 1, + sym_function_modifiers, + STATE(2621), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1584), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -107285,7 +111027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2892), 18, + ACTIONS(3101), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107304,13 +111046,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [39324] = 4, - ACTIONS(3229), 1, + [39700] = 4, + ACTIONS(2766), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107326,7 +111068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 23, + ACTIONS(2764), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -107350,60 +111092,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39374] = 22, - ACTIONS(3055), 1, + [39750] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(3107), 1, + sym_metavariable, + ACTIONS(3187), 1, + anon_sym_default, + ACTIONS(3255), 1, + sym_identifier, + ACTIONS(3257), 1, + anon_sym_fn, + STATE(1840), 1, + sym_scoped_type_identifier, + STATE(2428), 1, + sym_bracketed_type, + STATE(2429), 1, + sym_generic_type_with_turbofish, + STATE(2458), 1, + sym_function_modifiers, + STATE(2492), 1, + sym_generic_type, + STATE(2621), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1584), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3101), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [39828] = 22, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3231), 1, + ACTIONS(3259), 1, anon_sym_RPAREN, - ACTIONS(3233), 1, + ACTIONS(3261), 1, anon_sym_COMMA, - STATE(2112), 1, + STATE(2128), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107414,13 +111216,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39460] = 4, - ACTIONS(3183), 1, + [39914] = 4, + ACTIONS(3247), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(2682), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107436,7 +111238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 23, + ACTIONS(2680), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -107460,13 +111262,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39510] = 4, - ACTIONS(2682), 1, + [39964] = 4, + ACTIONS(2778), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2684), 15, + ACTIONS(2768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107482,7 +111284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2680), 23, + ACTIONS(2764), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -107506,58 +111308,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39560] = 21, - ACTIONS(15), 1, + [40014] = 4, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(566), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(568), 23, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(3055), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, anon_sym_QMARK, - ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [40064] = 22, + ACTIONS(388), 1, + anon_sym_RPAREN, + ACTIONS(3028), 1, + anon_sym_LBRACK, + ACTIONS(3034), 1, + anon_sym_as, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3052), 1, anon_sym_CARET, - STATE(142), 1, - sym_block, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, + anon_sym_DOT_DOT, + ACTIONS(3265), 1, + anon_sym_COMMA, + STATE(2055), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3219), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107568,58 +111418,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39643] = 21, - ACTIONS(400), 1, - anon_sym_RPAREN, - ACTIONS(3055), 1, + [40150] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3263), 1, - anon_sym_COMMA, + ACTIONS(3267), 1, + anon_sym_SEMI, + ACTIONS(3269), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107630,49 +111480,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39726] = 12, - ACTIONS(3055), 1, + [40233] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3243), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3267), 1, + ACTIONS(3046), 1, + anon_sym_AMP_AMP, + ACTIONS(3048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3050), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, + anon_sym_CARET, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3259), 2, + ACTIONS(3038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3271), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3109), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3107), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107683,58 +111541,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39791] = 21, - ACTIONS(15), 1, + [40314] = 21, + ACTIONS(582), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3285), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - STATE(145), 1, + STATE(238), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107745,50 +111603,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39874] = 13, - ACTIONS(3055), 1, + [40397] = 21, + ACTIONS(502), 1, + anon_sym_RPAREN, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3243), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3046), 1, + anon_sym_AMP_AMP, + ACTIONS(3048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3050), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, + ACTIONS(3301), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3259), 2, + ACTIONS(3038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3109), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3107), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107799,58 +111665,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39941] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [40480] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3285), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - STATE(119), 1, - sym_block, + ACTIONS(3303), 1, + anon_sym_LBRACE, + STATE(239), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107861,54 +111727,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40024] = 17, - ACTIONS(3055), 1, + [40563] = 21, + ACTIONS(111), 1, + anon_sym_RBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3253), 1, + ACTIONS(3048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, + ACTIONS(3267), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3107), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107919,53 +111789,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40099] = 16, - ACTIONS(3055), 1, + [40646] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3253), 1, + ACTIONS(3046), 1, + anon_sym_AMP_AMP, + ACTIONS(3048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3305), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3107), 15, - anon_sym_LPAREN, + ACTIONS(3082), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [40727] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, + ACTIONS(3028), 1, + anon_sym_LBRACK, + ACTIONS(3034), 1, + anon_sym_as, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, anon_sym_QMARK, + ACTIONS(3277), 1, + anon_sym_EQ, + ACTIONS(3281), 1, + anon_sym_AMP, + ACTIONS(3285), 1, + anon_sym_DOT_DOT, + ACTIONS(3287), 1, anon_sym_AMP_AMP, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, + ACTIONS(3291), 1, + anon_sym_PIPE, + ACTIONS(3293), 1, + anon_sym_CARET, + STATE(186), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3273), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3283), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3275), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3295), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107976,48 +111912,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40172] = 11, - ACTIONS(3055), 1, + [40810] = 21, + ACTIONS(582), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3267), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, + anon_sym_EQ, + ACTIONS(3281), 1, + anon_sym_AMP, + ACTIONS(3285), 1, anon_sym_DOT_DOT, + ACTIONS(3287), 1, + anon_sym_AMP_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3291), 1, + anon_sym_PIPE, + ACTIONS(3293), 1, + anon_sym_CARET, + STATE(223), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3279), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3109), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3295), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3299), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [40893] = 21, + ACTIONS(3028), 1, + anon_sym_LBRACK, + ACTIONS(3034), 1, + anon_sym_as, + ACTIONS(3040), 1, anon_sym_AMP, + ACTIONS(3046), 1, + anon_sym_AMP_AMP, + ACTIONS(3048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3050), 1, anon_sym_PIPE, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3107), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, + anon_sym_DOT_DOT, + ACTIONS(3267), 1, + anon_sym_SEMI, + ACTIONS(3307), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3030), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3056), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3219), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3032), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108028,58 +112036,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40235] = 21, - ACTIONS(270), 1, + [40976] = 21, + ACTIONS(109), 1, anon_sym_RBRACE, - ACTIONS(3055), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, + ACTIONS(3267), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108090,44 +112098,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40318] = 7, - ACTIONS(3055), 1, + [41059] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3034), 1, + anon_sym_as, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3267), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, + anon_sym_EQ, + ACTIONS(3281), 1, + anon_sym_AMP, + ACTIONS(3285), 1, anon_sym_DOT_DOT, + ACTIONS(3287), 1, + anon_sym_AMP_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3291), 1, + anon_sym_PIPE, + ACTIONS(3293), 1, + anon_sym_CARET, + STATE(908), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3265), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3117), 13, + ACTIONS(3273), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3283), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3275), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3115), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108138,55 +112160,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40373] = 18, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(3055), 1, + [41142] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3243), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, + ACTIONS(3309), 1, + anon_sym_SEMI, + ACTIONS(3311), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108197,45 +112222,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40450] = 8, - ACTIONS(3055), 1, + [41225] = 21, + ACTIONS(390), 1, + anon_sym_RPAREN, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3040), 1, + anon_sym_AMP, + ACTIONS(3046), 1, + anon_sym_AMP_AMP, + ACTIONS(3048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3050), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, + anon_sym_CARET, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3267), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, + ACTIONS(3301), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3265), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3109), 13, + ACTIONS(3030), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3219), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3032), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108246,57 +112284,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40507] = 20, - ACTIONS(3055), 1, + [41308] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3285), 1, + anon_sym_DOT_DOT, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, + STATE(49), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3271), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108307,58 +112346,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40588] = 21, - ACTIONS(3055), 1, + [41391] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3285), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3273), 1, - anon_sym_LBRACE, - STATE(1067), 1, - sym_match_block, + STATE(1110), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108369,55 +112408,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40671] = 18, - ACTIONS(3055), 1, + [41474] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3125), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3313), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108428,58 +112469,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40748] = 21, - ACTIONS(284), 1, + [41555] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3285), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - STATE(1077), 1, + STATE(187), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108490,44 +112531,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40831] = 7, - ACTIONS(3055), 1, + [41638] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3034), 1, + anon_sym_as, + ACTIONS(3040), 1, + anon_sym_AMP, + ACTIONS(3046), 1, + anon_sym_AMP_AMP, + ACTIONS(3048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3050), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, + anon_sym_CARET, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3267), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, + ACTIONS(3315), 1, + anon_sym_RBRACE, + ACTIONS(3317), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3265), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3093), 13, + ACTIONS(3030), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3219), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3032), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3091), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108538,55 +112593,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40886] = 18, - ACTIONS(3055), 1, + [41721] = 21, + ACTIONS(276), 1, + anon_sym_RBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3121), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, + ACTIONS(3267), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3119), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108597,58 +112655,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40963] = 21, - ACTIONS(3055), 1, + [41804] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, + ACTIONS(3319), 1, anon_sym_SEMI, - ACTIONS(3275), 1, - anon_sym_RBRACE, + ACTIONS(3321), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108659,57 +112717,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41046] = 20, - ACTIONS(3055), 1, + [41887] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3285), 1, + anon_sym_DOT_DOT, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3267), 1, - anon_sym_DOT_DOT, + STATE(46), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3053), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108720,44 +112779,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41127] = 7, - ACTIONS(3055), 1, + [41970] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3034), 1, + anon_sym_as, + ACTIONS(3040), 1, + anon_sym_AMP, + ACTIONS(3046), 1, + anon_sym_AMP_AMP, + ACTIONS(3048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3050), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, + anon_sym_CARET, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3267), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, + ACTIONS(3323), 1, + anon_sym_SEMI, + ACTIONS(3325), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3265), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3097), 13, + ACTIONS(3030), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3219), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3032), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3095), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108768,58 +112841,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41182] = 21, - ACTIONS(3055), 1, + [42053] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, - ACTIONS(3277), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3327), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108830,57 +112902,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41265] = 20, - ACTIONS(3055), 1, + [42134] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3279), 2, - anon_sym_RBRACE, + ACTIONS(3329), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108891,58 +112963,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41346] = 21, - ACTIONS(3055), 1, + [42215] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3263), 1, - anon_sym_COMMA, - ACTIONS(3281), 1, - anon_sym_RPAREN, + ACTIONS(3267), 1, + anon_sym_SEMI, + ACTIONS(3331), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108953,58 +113025,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41429] = 21, - ACTIONS(3055), 1, + [42298] = 21, + ACTIONS(582), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3285), 1, + anon_sym_DOT_DOT, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3283), 1, - anon_sym_RPAREN, - ACTIONS(3285), 1, - anon_sym_COMMA, + STATE(246), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109015,58 +113087,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41512] = 21, + [42381] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3285), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - STATE(1113), 1, + STATE(1054), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109077,58 +113149,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41595] = 21, - ACTIONS(113), 1, - anon_sym_RBRACE, - ACTIONS(3055), 1, + [42464] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, + ACTIONS(3333), 1, + anon_sym_RPAREN, + ACTIONS(3335), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109139,57 +113211,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41678] = 20, - ACTIONS(3055), 1, + [42547] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, + ACTIONS(3337), 1, + anon_sym_SEMI, + ACTIONS(3339), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3287), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109200,58 +113273,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41759] = 21, - ACTIONS(284), 1, + [42630] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3285), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - STATE(1150), 1, + STATE(118), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109262,57 +113335,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41842] = 20, - ACTIONS(3055), 1, + [42713] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3285), 1, + anon_sym_DOT_DOT, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, + STATE(822), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3289), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109323,58 +113397,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41923] = 21, + [42796] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3285), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - STATE(796), 1, + STATE(959), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109385,58 +113459,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42006] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [42879] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - STATE(128), 1, - sym_block, + ACTIONS(3343), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3141), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3341), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109447,58 +113520,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42089] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [42960] = 18, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3159), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - STATE(50), 1, - sym_block, + ACTIONS(3343), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3341), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3157), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109509,58 +113579,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42172] = 21, - ACTIONS(284), 1, + [43037] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3347), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(3349), 1, + anon_sym_RBRACE, + ACTIONS(3351), 1, + anon_sym_STAR, + ACTIONS(3355), 1, + anon_sym_COMMA, + ACTIONS(3357), 1, + anon_sym_COLON_COLON, + ACTIONS(3361), 1, + sym_metavariable, + STATE(1770), 1, + sym_scoped_identifier, + STATE(2378), 1, + sym_generic_type_with_turbofish, + STATE(2535), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3359), 3, + sym_self, + sym_super, + sym_crate, + STATE(2002), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3353), 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, + [43108] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3052), 1, anon_sym_CARET, - STATE(1108), 1, - sym_block, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, + anon_sym_DOT_DOT, + ACTIONS(3363), 1, + anon_sym_SEMI, + ACTIONS(3365), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3219), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109571,57 +113697,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42255] = 20, - ACTIONS(3055), 1, + [43191] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3291), 2, + ACTIONS(3367), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109632,58 +113758,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42336] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [43272] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3052), 1, anon_sym_CARET, - STATE(45), 1, - sym_block, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3219), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3369), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109694,57 +113819,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42419] = 20, - ACTIONS(3055), 1, + [43353] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, + ACTIONS(3301), 1, + anon_sym_COMMA, + ACTIONS(3371), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3293), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109755,58 +113881,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42500] = 21, + [43436] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3285), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - STATE(1119), 1, + STATE(873), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109817,109 +113943,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42583] = 10, - ACTIONS(3055), 1, + [43519] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3267), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3235), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3265), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3109), 8, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3040), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3107), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3046), 1, anon_sym_AMP_AMP, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [42644] = 21, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3050), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, + anon_sym_CARET, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, anon_sym_EQ, - ACTIONS(3243), 1, - anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, - anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, - anon_sym_PIPE, - ACTIONS(3255), 1, - anon_sym_CARET, - ACTIONS(3295), 1, - anon_sym_LBRACE, - STATE(176), 1, - sym_match_block, + ACTIONS(3373), 1, + anon_sym_RBRACE, + ACTIONS(3375), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3219), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109930,58 +114005,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42727] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [43602] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3052), 1, anon_sym_CARET, - STATE(794), 1, - sym_block, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, + anon_sym_DOT_DOT, + ACTIONS(3377), 1, + anon_sym_SEMI, + ACTIONS(3379), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3219), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109992,58 +114067,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42810] = 21, - ACTIONS(3055), 1, + [43685] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3285), 1, + anon_sym_DOT_DOT, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3297), 1, - anon_sym_RBRACE, - ACTIONS(3299), 1, - anon_sym_COMMA, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1062), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110054,58 +114129,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42893] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [43768] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - STATE(1126), 1, - sym_block, + ACTIONS(3343), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3076), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3341), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110116,57 +114190,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42976] = 20, - ACTIONS(3055), 1, + [43849] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, + ACTIONS(3383), 1, + anon_sym_SEMI, + ACTIONS(3385), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3301), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110177,114 +114252,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43057] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3303), 1, - sym_identifier, - ACTIONS(3305), 1, - anon_sym_LBRACE, - ACTIONS(3307), 1, - anon_sym_RBRACE, - ACTIONS(3309), 1, - anon_sym_STAR, - ACTIONS(3313), 1, - anon_sym_COMMA, - ACTIONS(3315), 1, - anon_sym_COLON_COLON, - ACTIONS(3319), 1, - sym_metavariable, - STATE(1790), 1, - sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3317), 3, - sym_self, - sym_super, - sym_crate, - STATE(1954), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3311), 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, - [43128] = 21, - ACTIONS(3055), 1, + [43932] = 8, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3343), 1, anon_sym_DOT_DOT, - ACTIONS(3321), 1, - anon_sym_RBRACE, - ACTIONS(3323), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3341), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3062), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3060), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110295,58 +114301,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43211] = 21, - ACTIONS(107), 1, - anon_sym_RBRACE, - ACTIONS(3055), 1, + [43989] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3387), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110357,57 +114362,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43294] = 20, - ACTIONS(3055), 1, + [44070] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3325), 2, - anon_sym_RPAREN, + ACTIONS(3389), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110418,58 +114423,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43375] = 21, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [44151] = 9, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, - anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3343), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, - anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, - anon_sym_PIPE, - ACTIONS(3255), 1, - anon_sym_CARET, - STATE(220), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3241), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3341), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3062), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3060), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110480,52 +114473,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43458] = 18, - ACTIONS(3055), 1, + [44210] = 18, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3129), 1, + ACTIONS(3036), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3343), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3341), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3127), 13, + ACTIONS(3026), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -110539,57 +114532,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43535] = 20, - ACTIONS(3055), 1, + [44287] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3285), 1, + anon_sym_DOT_DOT, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, + STATE(139), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110600,58 +114594,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43616] = 21, - ACTIONS(3055), 1, + [44370] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, + ACTIONS(3267), 1, anon_sym_SEMI, - ACTIONS(3329), 1, + ACTIONS(3391), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110662,58 +114656,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43699] = 21, - ACTIONS(278), 1, + [44453] = 21, + ACTIONS(119), 1, anon_sym_RBRACE, - ACTIONS(3055), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, + ACTIONS(3267), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110724,58 +114718,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43782] = 21, - ACTIONS(3055), 1, + [44536] = 7, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, - anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3343), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, - anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, - anon_sym_PIPE, - ACTIONS(3255), 1, - anon_sym_CARET, - ACTIONS(3331), 1, - anon_sym_LBRACE, - STATE(256), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3341), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3074), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3241), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3072), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110786,58 +114766,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43865] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [44591] = 14, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, - anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - STATE(143), 1, - sym_block, + ACTIONS(3343), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3341), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3062), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3060), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110848,58 +114821,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43948] = 21, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [44660] = 11, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, - anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3343), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, - anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, - anon_sym_PIPE, - ACTIONS(3255), 1, - anon_sym_CARET, - STATE(254), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3341), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3062), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3060), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110910,55 +114873,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44031] = 18, - ACTIONS(3055), 1, + [44723] = 16, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3113), 1, + ACTIONS(3062), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3249), 1, - anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3343), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3341), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3111), 13, + ACTIONS(3060), 15, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110969,51 +114930,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44108] = 14, - ACTIONS(3055), 1, + [44796] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3243), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3253), 1, + ACTIONS(3046), 1, + anon_sym_AMP_AMP, + ACTIONS(3048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, + ACTIONS(3267), 1, + anon_sym_SEMI, + ACTIONS(3393), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3259), 2, + ACTIONS(3038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3109), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3237), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111024,58 +114992,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44177] = 21, - ACTIONS(3055), 1, + [44879] = 21, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, + ACTIONS(3267), 1, anon_sym_SEMI, - ACTIONS(3333), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111086,46 +115054,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44260] = 9, - ACTIONS(3055), 1, + [44962] = 17, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3267), 1, + ACTIONS(3062), 1, + anon_sym_EQ, + ACTIONS(3281), 1, + anon_sym_AMP, + ACTIONS(3287), 1, + anon_sym_AMP_AMP, + ACTIONS(3291), 1, + anon_sym_PIPE, + ACTIONS(3293), 1, + anon_sym_CARET, + ACTIONS(3343), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3265), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3109), 10, + ACTIONS(3273), 2, anon_sym_PLUS, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3341), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3275), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3060), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111136,58 +115112,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44319] = 21, - ACTIONS(3055), 1, + [45037] = 13, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3343), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, - ACTIONS(3335), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3341), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3062), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3060), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111198,58 +115166,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44402] = 21, - ACTIONS(119), 1, - anon_sym_RBRACE, - ACTIONS(3055), 1, + [45104] = 21, + ACTIONS(582), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3285), 1, + anon_sym_DOT_DOT, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, + STATE(252), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111260,58 +115228,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44485] = 21, - ACTIONS(398), 1, - anon_sym_RPAREN, - ACTIONS(3055), 1, + [45187] = 12, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3281), 1, + anon_sym_AMP, + ACTIONS(3343), 1, anon_sym_DOT_DOT, - ACTIONS(3263), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3341), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3062), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3060), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111322,57 +115281,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44568] = 20, - ACTIONS(3055), 1, + [45252] = 10, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, - anon_sym_AMP, - ACTIONS(3249), 1, - anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, - anon_sym_PIPE, - ACTIONS(3255), 1, - anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3343), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3341), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3062), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3060), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111383,58 +115332,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44649] = 21, - ACTIONS(3055), 1, + [45313] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, + ACTIONS(3395), 1, anon_sym_SEMI, - ACTIONS(3337), 1, - anon_sym_RBRACE, + ACTIONS(3397), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111445,58 +115394,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44732] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [45396] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3052), 1, anon_sym_CARET, - STATE(161), 1, - sym_block, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3219), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3399), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111507,58 +115455,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44815] = 21, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [45477] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3052), 1, anon_sym_CARET, - STATE(240), 1, - sym_block, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, + anon_sym_DOT_DOT, + ACTIONS(3267), 1, + anon_sym_SEMI, + ACTIONS(3401), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3219), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111569,58 +115517,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44898] = 21, - ACTIONS(272), 1, - anon_sym_RBRACE, - ACTIONS(3055), 1, + [45560] = 18, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3135), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3343), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3341), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3133), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111631,58 +115576,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44981] = 21, - ACTIONS(602), 1, + [45637] = 21, + ACTIONS(582), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3285), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - STATE(249), 1, + STATE(237), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111693,57 +115638,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45064] = 20, - ACTIONS(3055), 1, + [45720] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3339), 2, + ACTIONS(3403), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111754,58 +115699,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45145] = 21, - ACTIONS(602), 1, + [45801] = 21, + ACTIONS(582), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3285), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - STATE(226), 1, + STATE(236), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111816,58 +115761,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45228] = 21, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [45884] = 7, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, - anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3343), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, - anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, - anon_sym_PIPE, - ACTIONS(3255), 1, - anon_sym_CARET, - STATE(232), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3341), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3155), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3241), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3153), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111878,58 +115809,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45311] = 21, - ACTIONS(602), 1, + [45939] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3285), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - STATE(245), 1, + STATE(178), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111940,57 +115871,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45394] = 20, - ACTIONS(3055), 1, + [46022] = 21, + ACTIONS(582), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3285), 1, + anon_sym_DOT_DOT, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, + STATE(255), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3341), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112001,58 +115933,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45475] = 21, - ACTIONS(602), 1, + [46105] = 21, + ACTIONS(582), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3285), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - STATE(244), 1, + STATE(226), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112063,52 +115995,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45558] = 18, - ACTIONS(3055), 1, + [46188] = 18, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(3070), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3343), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3341), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3101), 13, + ACTIONS(3068), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -112122,57 +116054,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45635] = 20, - ACTIONS(3055), 1, + [46265] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3285), 1, + anon_sym_DOT_DOT, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, + STATE(1045), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112183,56 +116116,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45716] = 20, - ACTIONS(3055), 1, + [46348] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3345), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3405), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112243,56 +116177,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45796] = 20, - ACTIONS(3055), 1, + [46429] = 18, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3145), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3343), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3341), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3143), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112303,56 +116236,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45876] = 20, - ACTIONS(3055), 1, + [46506] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3285), 1, + anon_sym_DOT_DOT, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3347), 1, - anon_sym_SEMI, + STATE(106), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112363,110 +116298,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45956] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3303), 1, - sym_identifier, - ACTIONS(3305), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_STAR, - ACTIONS(3315), 1, - anon_sym_COLON_COLON, - ACTIONS(3319), 1, - sym_metavariable, - ACTIONS(3349), 1, + [46589] = 21, + ACTIONS(278), 1, anon_sym_RBRACE, - STATE(1790), 1, - sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3317), 3, - sym_self, - sym_super, - sym_crate, - STATE(2266), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3311), 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, - [46024] = 20, - ACTIONS(3055), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3351), 1, - anon_sym_RBRACK, + ACTIONS(3267), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112477,56 +116360,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46104] = 20, - ACTIONS(3055), 1, + [46672] = 7, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3343), 1, anon_sym_DOT_DOT, - ACTIONS(3353), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3341), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3086), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3084), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112537,56 +116408,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46184] = 20, - ACTIONS(3055), 1, + [46727] = 18, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3343), 1, anon_sym_DOT_DOT, - ACTIONS(3355), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3341), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(282), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112597,56 +116467,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46264] = 20, - ACTIONS(3055), 1, + [46804] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3285), 1, + anon_sym_DOT_DOT, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3357), 1, - anon_sym_RBRACK, + STATE(817), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112657,56 +116529,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46344] = 20, - ACTIONS(3055), 1, + [46887] = 21, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3277), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3281), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3285), 1, + anon_sym_DOT_DOT, + ACTIONS(3287), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3289), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3293), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3359), 1, - anon_sym_COMMA, + ACTIONS(3407), 1, + anon_sym_LBRACE, + STATE(142), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3279), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3275), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3295), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3299), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112717,56 +116591,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46424] = 20, - ACTIONS(3055), 1, + [46970] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3361), 1, + ACTIONS(3409), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112777,56 +116651,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46504] = 20, - ACTIONS(3055), 1, + [47050] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3363), 1, + ACTIONS(3411), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112837,56 +116711,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46584] = 20, - ACTIONS(3055), 1, + [47130] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3365), 1, + ACTIONS(3413), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112897,56 +116771,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46664] = 20, - ACTIONS(3055), 1, + [47210] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3263), 1, - anon_sym_COMMA, + ACTIONS(3415), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112957,56 +116831,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46744] = 20, - ACTIONS(3055), 1, + [47290] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(3417), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113017,56 +116891,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46824] = 20, - ACTIONS(3055), 1, + [47370] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3369), 1, + ACTIONS(3419), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113077,176 +116951,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46904] = 20, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3371), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, + [47450] = 14, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3347), 1, + anon_sym_LBRACE, + ACTIONS(3351), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3087), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46984] = 20, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3373), 1, - anon_sym_SEMI, + ACTIONS(3357), 1, + anon_sym_COLON_COLON, + ACTIONS(3361), 1, + sym_metavariable, + ACTIONS(3421), 1, + anon_sym_RBRACE, + STATE(1770), 1, + sym_scoped_identifier, + STATE(2378), 1, + sym_generic_type_with_turbofish, + STATE(2535), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3087), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47064] = 20, - ACTIONS(3055), 1, + ACTIONS(3359), 3, + sym_self, + sym_super, + sym_crate, + STATE(2279), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3353), 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, + [47518] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3375), 1, - anon_sym_SEMI, + ACTIONS(3423), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113257,56 +117065,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47144] = 20, - ACTIONS(3055), 1, + [47598] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3377), 1, - anon_sym_SEMI, + ACTIONS(3425), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113317,56 +117125,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47224] = 20, - ACTIONS(3055), 1, + [47678] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_RBRACK, + ACTIONS(3427), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113377,56 +117185,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47304] = 20, - ACTIONS(3055), 1, + [47758] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, + ACTIONS(3034), 1, + anon_sym_as, + ACTIONS(3040), 1, + anon_sym_AMP, + ACTIONS(3046), 1, + anon_sym_AMP_AMP, + ACTIONS(3048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3050), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, + anon_sym_CARET, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, + anon_sym_DOT_DOT, + ACTIONS(3429), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3030), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3056), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3219), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3032), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3054), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3082), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47838] = 20, + ACTIONS(3028), 1, + anon_sym_LBRACK, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3040), 1, + anon_sym_AMP, + ACTIONS(3046), 1, + anon_sym_AMP_AMP, + ACTIONS(3048), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3050), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, + anon_sym_CARET, + ACTIONS(3058), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3221), 1, + anon_sym_DOT_DOT, + ACTIONS(3431), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3030), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3056), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3219), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3032), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3054), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3082), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47918] = 20, + ACTIONS(3028), 1, + anon_sym_LBRACK, + ACTIONS(3034), 1, + anon_sym_as, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3381), 1, - anon_sym_RBRACK, + ACTIONS(3433), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113437,41 +117365,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47384] = 14, + [47998] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3345), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3351), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3357), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3361), 1, sym_metavariable, - ACTIONS(3383), 1, + ACTIONS(3435), 1, anon_sym_RBRACE, - STATE(1790), 1, + STATE(1770), 1, sym_scoped_identifier, - STATE(2359), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2535), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3359), 3, sym_self, sym_super, sym_crate, - STATE(2266), 5, + STATE(2279), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3353), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113491,56 +117419,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47452] = 20, - ACTIONS(3055), 1, + [48066] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3385), 1, - anon_sym_SEMI, + ACTIONS(3437), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113551,56 +117479,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47532] = 20, - ACTIONS(3055), 1, + [48146] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3387), 1, + ACTIONS(3439), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113611,56 +117539,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47612] = 20, - ACTIONS(3055), 1, + [48226] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3389), 1, + ACTIONS(3441), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113671,56 +117599,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47692] = 20, - ACTIONS(3055), 1, + [48306] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3391), 1, - anon_sym_EQ_GT, + ACTIONS(3443), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113731,56 +117659,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47772] = 20, - ACTIONS(3055), 1, + [48386] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3393), 1, - anon_sym_SEMI, + ACTIONS(3445), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113791,56 +117719,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47852] = 20, - ACTIONS(3055), 1, + [48466] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3395), 1, + ACTIONS(3447), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113851,56 +117779,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47932] = 20, - ACTIONS(3055), 1, + [48546] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3397), 1, + ACTIONS(3449), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113911,56 +117839,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48012] = 20, - ACTIONS(3055), 1, + [48626] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3399), 1, - anon_sym_SEMI, + ACTIONS(3451), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113971,56 +117899,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48092] = 20, - ACTIONS(3055), 1, + [48706] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3401), 1, + ACTIONS(3453), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114031,56 +117959,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48172] = 20, - ACTIONS(3055), 1, + [48786] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3403), 1, - anon_sym_SEMI, + ACTIONS(3455), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114091,56 +118019,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48252] = 20, - ACTIONS(3055), 1, + [48866] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3405), 1, + ACTIONS(3267), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114151,56 +118079,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48332] = 20, - ACTIONS(3055), 1, + [48946] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3407), 1, - anon_sym_COMMA, + ACTIONS(3457), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114211,56 +118139,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48412] = 20, - ACTIONS(3055), 1, + [49026] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3409), 1, - anon_sym_RBRACK, + ACTIONS(3459), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114271,56 +118199,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48492] = 20, - ACTIONS(3055), 1, + [49106] = 20, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3034), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3040), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3046), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3048), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3050), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3052), 1, anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3058), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3078), 1, + anon_sym_QMARK, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3411), 1, - anon_sym_SEMI, + ACTIONS(3301), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3030), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3032), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3054), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3082), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114331,39 +118259,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48572] = 13, + [49186] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3345), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3351), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3357), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3361), 1, sym_metavariable, - STATE(1790), 1, + STATE(1770), 1, sym_scoped_identifier, - STATE(2359), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2535), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3359), 3, sym_self, sym_super, sym_crate, - STATE(2361), 5, + STATE(2588), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3353), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114383,39 +118311,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48637] = 13, + [49251] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3345), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3351), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3357), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3361), 1, sym_metavariable, - STATE(1790), 1, + STATE(1770), 1, sym_scoped_identifier, - STATE(2359), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2535), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3359), 3, sym_self, sym_super, sym_crate, - STATE(2539), 5, + STATE(2549), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3353), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114435,39 +118363,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48702] = 13, + [49316] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3345), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3351), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3357), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3361), 1, sym_metavariable, - STATE(1790), 1, + STATE(1770), 1, sym_scoped_identifier, - STATE(2359), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2535), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3359), 3, sym_self, sym_super, sym_crate, - STATE(2266), 5, + STATE(2415), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3353), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114487,39 +118415,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48767] = 13, + [49381] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3345), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3351), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3357), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3361), 1, sym_metavariable, - STATE(1790), 1, + STATE(1770), 1, sym_scoped_identifier, - STATE(2359), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2535), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3359), 3, sym_self, sym_super, sym_crate, - STATE(2444), 5, + STATE(2279), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3353), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114539,39 +118467,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48832] = 13, + [49446] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3345), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3351), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3357), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3361), 1, sym_metavariable, - STATE(1790), 1, + STATE(1770), 1, sym_scoped_identifier, - STATE(2359), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2535), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3359), 3, sym_self, sym_super, sym_crate, - STATE(2500), 5, + STATE(2404), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3353), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114591,15 +118519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48897] = 3, + [49511] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3415), 3, + ACTIONS(3463), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3413), 28, + ACTIONS(3461), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114628,15 +118556,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48937] = 3, + [49551] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3419), 3, + ACTIONS(3467), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3417), 28, + ACTIONS(3465), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114665,15 +118593,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48977] = 3, + [49591] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3423), 3, + ACTIONS(3471), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3421), 28, + ACTIONS(3469), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114702,29 +118630,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [49017] = 10, + [49631] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(890), 1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3425), 1, + ACTIONS(3473), 1, sym_identifier, - ACTIONS(3431), 1, + ACTIONS(3479), 1, sym_metavariable, - STATE(2186), 1, + STATE(2368), 1, sym_scoped_identifier, - STATE(2359), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2535), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 3, + ACTIONS(3477), 3, sym_self, sym_super, sym_crate, - ACTIONS(3427), 19, + ACTIONS(3475), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114744,29 +118672,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49069] = 10, + [49683] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(890), 1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3433), 1, + ACTIONS(3481), 1, sym_identifier, - ACTIONS(3439), 1, + ACTIONS(3487), 1, sym_metavariable, - STATE(2339), 1, + STATE(2202), 1, sym_scoped_identifier, - STATE(2359), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2535), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3437), 3, + ACTIONS(3485), 3, sym_self, sym_super, sym_crate, - ACTIONS(3435), 19, + ACTIONS(3483), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114786,13 +118714,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49121] = 3, - ACTIONS(2433), 1, + [49735] = 3, + ACTIONS(2405), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2435), 20, + ACTIONS(2407), 21, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114809,17 +118737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_extern, anon_sym_GT, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49151] = 3, - ACTIONS(2445), 1, + [49766] = 3, + ACTIONS(2479), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2447), 20, + ACTIONS(2481), 21, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114836,35 +118765,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_extern, anon_sym_GT, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49181] = 11, - ACTIONS(3443), 1, + [49797] = 11, + ACTIONS(3491), 1, anon_sym_LPAREN, - ACTIONS(3445), 1, + ACTIONS(3493), 1, anon_sym_LBRACE, - ACTIONS(3449), 1, + ACTIONS(3497), 1, anon_sym_BANG, - ACTIONS(3451), 1, + ACTIONS(3499), 1, anon_sym_COLON_COLON, - ACTIONS(3455), 1, + ACTIONS(3503), 1, anon_sym_LT2, - ACTIONS(3457), 1, + ACTIONS(3505), 1, anon_sym_AT, - STATE(1375), 1, + STATE(1390), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3495), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3453), 2, + ACTIONS(3501), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3441), 9, + ACTIONS(3489), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114872,27 +118802,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [49226] = 9, - ACTIONS(2574), 1, + [49843] = 9, + ACTIONS(2606), 1, anon_sym_COLON, - ACTIONS(3449), 1, + ACTIONS(3497), 1, anon_sym_BANG, - ACTIONS(3455), 1, + ACTIONS(3503), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3507), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, + ACTIONS(3509), 1, anon_sym_COLON_COLON, - STATE(1375), 1, + STATE(1390), 1, sym_type_arguments, - STATE(1400), 1, + STATE(1409), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 12, + ACTIONS(2602), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114904,17 +118835,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [49266] = 4, - ACTIONS(2592), 1, + [49884] = 4, + ACTIONS(2628), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 2, + ACTIONS(2632), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2590), 15, + ACTIONS(2626), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114928,18 +118860,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [49295] = 4, - ACTIONS(2600), 1, + [49914] = 4, + ACTIONS(2648), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 2, + ACTIONS(2652), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2598), 15, + ACTIONS(2646), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114953,19 +118886,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [49324] = 4, + [49944] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 2, + ACTIONS(2626), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2594), 2, + ACTIONS(2630), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2596), 14, + ACTIONS(2632), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114975,28 +118909,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_BANG, anon_sym_COMMA, + anon_sym_else, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49353] = 8, - ACTIONS(2588), 1, + [49974] = 4, + ACTIONS(2656), 1, anon_sym_COLON, - ACTIONS(3455), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2660), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2654), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, anon_sym_LT2, - ACTIONS(3459), 1, + anon_sym_PIPE, + [50004] = 8, + ACTIONS(2616), 1, + anon_sym_COLON, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, + ACTIONS(3509), 1, anon_sym_COLON_COLON, - STATE(1375), 1, + STATE(1390), 1, sym_type_arguments, - STATE(1400), 1, + STATE(1409), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 12, + ACTIONS(2614), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115008,18 +118969,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [49390] = 4, + [50042] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 2, + ACTIONS(2634), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2602), 2, + ACTIONS(2638), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2604), 14, + ACTIONS(2640), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115029,76 +118991,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_BANG, anon_sym_COMMA, + anon_sym_else, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49419] = 4, - ACTIONS(2608), 1, - anon_sym_COLON, + [50072] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 2, + ACTIONS(2654), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2658), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2660), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_BANG, + anon_sym_COMMA, + anon_sym_else, anon_sym_COLON_COLON, - ACTIONS(2606), 15, - anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50102] = 8, + ACTIONS(2620), 1, + anon_sym_COLON, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, anon_sym_LPAREN, + ACTIONS(3509), 1, + anon_sym_COLON_COLON, + STATE(1390), 1, + sym_type_arguments, + STATE(1409), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2618), 13, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, + anon_sym_else, anon_sym_PIPE, - [49448] = 8, - ACTIONS(2584), 1, + [50140] = 4, + ACTIONS(2636), 1, anon_sym_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 12, + ACTIONS(2640), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2634), 16, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, + anon_sym_LT2, anon_sym_PIPE, - [49485] = 4, + [50170] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 2, + ACTIONS(2646), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2630), 2, + ACTIONS(2650), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2632), 14, + ACTIONS(2652), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115108,69 +119099,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_BANG, anon_sym_COMMA, + anon_sym_else, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49514] = 4, - ACTIONS(2628), 1, - anon_sym_COLON, + [50200] = 6, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + STATE(1392), 1, + sym_type_arguments, + STATE(1405), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2632), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2626), 15, + ACTIONS(2622), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, + anon_sym_else, anon_sym_PIPE, - [49543] = 4, + [50233] = 6, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + STATE(1392), 1, + sym_type_arguments, + STATE(1405), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 2, + ACTIONS(2666), 14, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [50266] = 6, + ACTIONS(3503), 1, anon_sym_LT2, - ACTIONS(2610), 2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + STATE(1392), 1, + sym_type_arguments, + STATE(1405), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2662), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [50299] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2638), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2612), 14, + ACTIONS(2640), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_as, anon_sym_if, anon_sym_BANG, anon_sym_COMMA, + anon_sym_else, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49572] = 3, + [50326] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 2, + ACTIONS(2630), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2604), 15, + ACTIONS(2632), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115183,17 +119230,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_BANG, anon_sym_COMMA, + anon_sym_else, anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49598] = 3, + [50353] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 2, + ACTIONS(2650), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2612), 15, + ACTIONS(2652), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115206,23 +119254,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_BANG, anon_sym_COMMA, + anon_sym_else, anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49624] = 6, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1386), 1, - sym_type_arguments, - STATE(1403), 1, - sym_parameters, + [50380] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 13, + ACTIONS(2654), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -115230,167 +119272,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_PIPE, - [49656] = 17, - ACTIONS(3465), 1, - anon_sym_const, - ACTIONS(3467), 1, - anon_sym_enum, - ACTIONS(3469), 1, - anon_sym_fn, - ACTIONS(3471), 1, - anon_sym_mod, - ACTIONS(3473), 1, - anon_sym_static, - ACTIONS(3475), 1, - anon_sym_struct, - ACTIONS(3477), 1, - anon_sym_trait, - ACTIONS(3479), 1, - anon_sym_type, - ACTIONS(3481), 1, - anon_sym_union, - ACTIONS(3483), 1, - anon_sym_unsafe, - ACTIONS(3485), 1, - anon_sym_use, - ACTIONS(3487), 1, - anon_sym_extern, - STATE(1527), 1, - sym_extern_modifier, - STATE(1564), 1, - aux_sym_function_modifiers_repeat1, - STATE(2433), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3463), 2, - anon_sym_async, - anon_sym_default, - [49710] = 6, - ACTIONS(3455), 1, + anon_sym_else, anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1386), 1, - sym_type_arguments, - STATE(1403), 1, - sym_parameters, + anon_sym_PIPE, + [50404] = 3, + ACTIONS(614), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 13, + ACTIONS(612), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_if, anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [49742] = 3, + [50430] = 3, + ACTIONS(670), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2596), 15, + ACTIONS(668), 16, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_as, anon_sym_if, - anon_sym_BANG, + anon_sym_where, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_GT, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [49768] = 6, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, + [50456] = 7, + ACTIONS(3491), 1, anon_sym_LPAREN, - STATE(1386), 1, - sym_type_arguments, - STATE(1403), 1, - sym_parameters, + ACTIONS(3497), 1, + anon_sym_BANG, + ACTIONS(3511), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 13, + ACTIONS(3495), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3489), 10, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [49800] = 17, - ACTIONS(3489), 1, + [50490] = 17, + ACTIONS(3515), 1, anon_sym_const, - ACTIONS(3491), 1, + ACTIONS(3517), 1, anon_sym_enum, - ACTIONS(3493), 1, + ACTIONS(3519), 1, anon_sym_fn, - ACTIONS(3495), 1, + ACTIONS(3521), 1, anon_sym_mod, - ACTIONS(3497), 1, + ACTIONS(3523), 1, anon_sym_static, - ACTIONS(3499), 1, + ACTIONS(3525), 1, anon_sym_struct, - ACTIONS(3501), 1, + ACTIONS(3527), 1, anon_sym_trait, - ACTIONS(3503), 1, + ACTIONS(3529), 1, anon_sym_type, - ACTIONS(3505), 1, + ACTIONS(3531), 1, anon_sym_union, - ACTIONS(3507), 1, + ACTIONS(3533), 1, anon_sym_unsafe, - ACTIONS(3509), 1, + ACTIONS(3535), 1, anon_sym_use, - ACTIONS(3511), 1, + ACTIONS(3537), 1, anon_sym_extern, - STATE(1547), 1, + STATE(1563), 1, sym_extern_modifier, - STATE(1564), 1, + STATE(1584), 1, aux_sym_function_modifiers_repeat1, - STATE(2571), 1, + STATE(2450), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3463), 2, + ACTIONS(3513), 2, anon_sym_async, anon_sym_default, - [49854] = 3, - ACTIONS(622), 1, + [50544] = 3, + ACTIONS(654), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(620), 15, + ACTIONS(652), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115404,84 +119410,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [49879] = 7, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3513), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3447), 2, - anon_sym_COLON, + [50570] = 3, + ACTIONS(560), 1, anon_sym_EQ, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3441), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [49912] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 16, + ACTIONS(558), 16, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, + anon_sym_if, anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [49935] = 3, - ACTIONS(588), 1, - anon_sym_EQ, + [50596] = 17, + ACTIONS(3539), 1, + anon_sym_const, + ACTIONS(3541), 1, + anon_sym_enum, + ACTIONS(3543), 1, + anon_sym_fn, + ACTIONS(3545), 1, + anon_sym_mod, + ACTIONS(3547), 1, + anon_sym_static, + ACTIONS(3549), 1, + anon_sym_struct, + ACTIONS(3551), 1, + anon_sym_trait, + ACTIONS(3553), 1, + anon_sym_type, + ACTIONS(3555), 1, + anon_sym_union, + ACTIONS(3557), 1, + anon_sym_unsafe, + ACTIONS(3559), 1, + anon_sym_use, + ACTIONS(3561), 1, + anon_sym_extern, + STATE(1546), 1, + sym_extern_modifier, + STATE(1584), 1, + aux_sym_function_modifiers_repeat1, + STATE(2619), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 15, + ACTIONS(3513), 2, + anon_sym_async, + anon_sym_default, + [50650] = 3, + ACTIONS(2754), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2752), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_if, + anon_sym_for, anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_in, + anon_sym_else, + anon_sym_COLON_COLON, anon_sym_PIPE, - [49960] = 3, - ACTIONS(3515), 1, + [50675] = 3, + ACTIONS(3563), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3189), 15, + ACTIONS(3229), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115497,137 +119517,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49985] = 3, - ACTIONS(576), 1, - anon_sym_EQ, + [50700] = 3, + ACTIONS(2720), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(574), 15, + ACTIONS(2718), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_if, + anon_sym_for, anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_in, + anon_sym_else, + anon_sym_COLON_COLON, anon_sym_PIPE, - [50010] = 3, - ACTIONS(674), 1, - anon_sym_EQ, + [50725] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(672), 15, + ACTIONS(2986), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_if, anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_in, + anon_sym_else, + sym_mutable_specifier, anon_sym_PIPE, - [50035] = 2, + sym_self, + [50748] = 3, + ACTIONS(2730), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3215), 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, - [50057] = 2, + ACTIONS(2728), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [50773] = 3, + ACTIONS(2738), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2800), 15, + ACTIONS(2736), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - sym_mutable_specifier, + anon_sym_else, + anon_sym_COLON_COLON, anon_sym_PIPE, - sym_self, - [50079] = 3, - ACTIONS(2748), 1, + [50798] = 3, + ACTIONS(2734), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2732), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [50823] = 3, + ACTIONS(3565), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, ACTIONS(2746), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_COLON_COLON, + anon_sym_else, anon_sym_PIPE, - [50103] = 3, - ACTIONS(2808), 1, + [50847] = 5, + ACTIONS(3571), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3191), 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, - [50127] = 2, + ACTIONS(3569), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3573), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3567), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + [50875] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3185), 15, + ACTIONS(3235), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115643,34 +119690,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [50149] = 3, - ACTIONS(2678), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2676), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [50173] = 3, - ACTIONS(3517), 1, - anon_sym_COLON_COLON, + [50897] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3191), 14, + ACTIONS(3223), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115685,75 +119709,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [50197] = 13, - ACTIONS(3441), 1, + sym_identifier, + [50919] = 14, + ACTIONS(2602), 1, + anon_sym_PLUS, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3445), 1, + ACTIONS(3493), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(3495), 1, anon_sym_COLON, - ACTIONS(3449), 1, + ACTIONS(3497), 1, anon_sym_BANG, - ACTIONS(3455), 1, + ACTIONS(3503), 1, anon_sym_LT2, - ACTIONS(3457), 1, + ACTIONS(3505), 1, anon_sym_AT, - ACTIONS(3519), 1, + ACTIONS(3575), 1, anon_sym_LPAREN, - ACTIONS(3521), 1, + ACTIONS(3580), 1, anon_sym_COLON_COLON, - STATE(1375), 1, + STATE(1390), 1, sym_type_arguments, - STATE(1400), 1, + STATE(1409), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(3501), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2570), 3, + ACTIONS(3577), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [50241] = 13, - ACTIONS(3445), 1, - anon_sym_LBRACE, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3457), 1, - anon_sym_AT, - ACTIONS(3523), 1, - anon_sym_LPAREN, - ACTIONS(3525), 1, - anon_sym_RBRACK, - ACTIONS(3528), 1, - anon_sym_COLON_COLON, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, + [50965] = 3, + ACTIONS(3582), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 2, + ACTIONS(2790), 14, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - ACTIONS(3441), 2, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [50285] = 3, - ACTIONS(2778), 1, + [50989] = 4, + ACTIONS(2664), 1, anon_sym_COLON, + ACTIONS(3584), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2776), 14, + ACTIONS(2662), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115761,93 +119779,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_COLON_COLON, + anon_sym_else, anon_sym_PIPE, - [50309] = 3, - ACTIONS(2732), 1, - anon_sym_COLON, + [51015] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 14, + ACTIONS(2722), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [50333] = 14, - ACTIONS(2570), 1, - anon_sym_PLUS, - ACTIONS(3441), 1, + anon_sym_else, anon_sym_PIPE, - ACTIONS(3445), 1, - anon_sym_LBRACE, - ACTIONS(3447), 1, - anon_sym_COLON, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3457), 1, - anon_sym_AT, - ACTIONS(3530), 1, - anon_sym_LPAREN, - ACTIONS(3532), 1, - anon_sym_COLON_COLON, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, + [51037] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3525), 2, + ACTIONS(2696), 15, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [50379] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3209), 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, - [50401] = 3, - ACTIONS(2752), 1, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [51059] = 4, + ACTIONS(2668), 1, anon_sym_COLON, + ACTIONS(3584), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2750), 14, + ACTIONS(2666), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115855,91 +119841,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_COLON_COLON, + anon_sym_else, anon_sym_PIPE, - [50425] = 4, - ACTIONS(2616), 1, - anon_sym_COLON, - ACTIONS(3534), 1, - anon_sym_COLON_COLON, + [51085] = 3, + ACTIONS(3586), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 12, + ACTIONS(2806), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50450] = 2, + [51109] = 4, + ACTIONS(2624), 1, + anon_sym_COLON, + ACTIONS(3584), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2724), 14, + ACTIONS(2622), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50471] = 14, - ACTIONS(3449), 1, + [51135] = 13, + ACTIONS(3493), 1, + anon_sym_LBRACE, + ACTIONS(3497), 1, anon_sym_BANG, - ACTIONS(3455), 1, + ACTIONS(3503), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3505), 1, + anon_sym_AT, + ACTIONS(3577), 1, + anon_sym_RBRACK, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, + ACTIONS(3590), 1, anon_sym_COLON_COLON, - ACTIONS(3536), 1, - anon_sym_COLON, - ACTIONS(3538), 1, - anon_sym_EQ, - ACTIONS(3540), 1, - anon_sym_COMMA, - ACTIONS(3542), 1, - anon_sym_GT, - STATE(1375), 1, + STATE(1390), 1, sym_type_arguments, - STATE(1400), 1, + STATE(1409), 1, sym_parameters, - STATE(2015), 1, - sym_trait_bounds, - STATE(2017), 1, - aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 2, + ACTIONS(2602), 2, + anon_sym_SEMI, anon_sym_PLUS, - anon_sym_as, - [50516] = 3, - ACTIONS(3544), 1, + ACTIONS(3489), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [51179] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3239), 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, + [51201] = 3, + ACTIONS(3592), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 13, + ACTIONS(2702), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115952,14 +119960,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50539] = 3, - ACTIONS(3546), 1, + [51225] = 3, + ACTIONS(3594), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2690), 13, + ACTIONS(2796), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115972,34 +119981,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50562] = 5, - ACTIONS(3552), 1, - anon_sym_COLON_COLON, + [51249] = 3, + ACTIONS(2425), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3550), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3548), 9, + ACTIONS(2427), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50589] = 2, + [51273] = 3, + ACTIONS(3596), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 14, + ACTIONS(2712), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116011,120 +120022,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50610] = 4, - ACTIONS(2616), 1, - anon_sym_COLON, - ACTIONS(3193), 1, + [51297] = 3, + ACTIONS(3598), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 12, + ACTIONS(3231), 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, + [51321] = 3, + ACTIONS(3600), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2772), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50635] = 4, - ACTIONS(2636), 1, - anon_sym_COLON, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, + [51345] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 12, + ACTIONS(2708), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50660] = 4, - ACTIONS(3560), 1, - anon_sym_pat, - STATE(593), 1, - sym_fragment_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3558), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [50685] = 4, - ACTIONS(2624), 1, + [51367] = 13, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3493), 1, + anon_sym_LBRACE, + ACTIONS(3495), 1, anon_sym_COLON, - ACTIONS(3556), 1, + ACTIONS(3497), 1, + anon_sym_BANG, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3505), 1, + anon_sym_AT, + ACTIONS(3602), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_COLON_COLON, + STATE(1390), 1, + sym_type_arguments, + STATE(1409), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 12, - anon_sym_SEMI, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2602), 3, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50710] = 3, - ACTIONS(2385), 1, - anon_sym_EQ, + [51411] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2387), 13, + ACTIONS(2786), 15, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_else, anon_sym_PIPE, - [50733] = 3, - ACTIONS(3562), 1, - anon_sym_DASH_GT, + [51433] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2706), 13, + ACTIONS(2742), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116136,76 +120154,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50756] = 3, - ACTIONS(3564), 1, - anon_sym_DASH_GT, + [51455] = 3, + ACTIONS(2948), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3231), 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, + [51479] = 4, + ACTIONS(2624), 1, + anon_sym_COLON, + ACTIONS(3606), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2766), 13, + ACTIONS(2622), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50779] = 3, - ACTIONS(3566), 1, - anon_sym_DASH_GT, + [51505] = 4, + ACTIONS(2624), 1, + anon_sym_COLON, + ACTIONS(3233), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 13, + ACTIONS(2622), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50802] = 4, - ACTIONS(2616), 1, - anon_sym_COLON, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, + [51531] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 12, + ACTIONS(2872), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50827] = 3, - ACTIONS(3568), 1, - anon_sym_DASH_GT, + [51552] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2760), 13, + ACTIONS(2840), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116218,12 +120259,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50850] = 2, + [51573] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 14, + ACTIONS(2844), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116235,16 +120277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50871] = 3, - ACTIONS(3570), 1, - anon_sym_DASH_GT, + [51594] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 13, + ACTIONS(2990), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116257,12 +120297,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50894] = 2, + [51615] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2738), 14, + ACTIONS(2908), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116274,33 +120315,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50915] = 2, + [51636] = 3, + ACTIONS(3610), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2772), 14, + ACTIONS(3608), 13, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50936] = 2, + [51659] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2911), 13, + ACTIONS(2904), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116313,12 +120355,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50956] = 2, + [51680] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3023), 13, + ACTIONS(2900), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116331,30 +120374,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [50976] = 2, + [51701] = 3, + ACTIONS(3614), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 13, + ACTIONS(3612), 13, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50996] = 2, + [51724] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 13, + ACTIONS(2852), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116367,12 +120413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51016] = 2, + [51745] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2999), 13, + ACTIONS(2872), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116385,12 +120432,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51036] = 2, + [51766] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2810), 13, + ACTIONS(2622), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116403,12 +120451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51056] = 2, + [51787] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2947), 13, + ACTIONS(2820), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116421,12 +120470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51076] = 2, + [51808] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2991), 13, + ACTIONS(2998), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116439,31 +120489,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51096] = 3, - ACTIONS(3574), 1, - anon_sym_EQ, + [51829] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3572), 12, + ACTIONS(2666), 14, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51118] = 2, + [51850] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 13, + ACTIONS(2982), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116476,15 +120527,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51138] = 3, + [51871] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 2, + ACTIONS(2658), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2632), 11, + ACTIONS(2660), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116493,34 +120545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_BANG, anon_sym_COMMA, + anon_sym_else, anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [51160] = 4, - ACTIONS(3447), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3441), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51184] = 2, + [51894] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 13, + ACTIONS(2912), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116533,12 +120566,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51204] = 2, + [51915] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 13, + ACTIONS(2876), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116551,12 +120585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51224] = 2, + [51936] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3023), 13, + ACTIONS(2662), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116569,12 +120604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51244] = 2, + [51957] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2971), 13, + ACTIONS(2880), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116587,12 +120623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51264] = 2, + [51978] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 13, + ACTIONS(2884), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116605,12 +120642,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51284] = 2, + [51999] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3007), 13, + ACTIONS(3010), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116623,12 +120661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51304] = 2, + [52020] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2935), 13, + ACTIONS(2892), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116641,12 +120680,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51324] = 2, + [52041] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2826), 13, + ACTIONS(2916), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116659,48 +120699,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51344] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2634), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + [52062] = 14, + ACTIONS(3497), 1, + anon_sym_BANG, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3509), 1, + anon_sym_COLON_COLON, + ACTIONS(3616), 1, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + ACTIONS(3618), 1, anon_sym_EQ, + ACTIONS(3620), 1, anon_sym_COMMA, + ACTIONS(3622), 1, anon_sym_GT, - anon_sym_PIPE, - [51364] = 2, + STATE(1390), 1, + sym_type_arguments, + STATE(1409), 1, + sym_parameters, + STATE(1996), 1, + sym_trait_bounds, + STATE(1997), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2792), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [51384] = 2, + sym_line_comment, + ACTIONS(2602), 2, + anon_sym_PLUS, + anon_sym_as, + [52107] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2983), 13, + ACTIONS(2848), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116713,14 +120749,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - [51404] = 3, - ACTIONS(3578), 1, + [52128] = 4, + ACTIONS(3495), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 12, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3489), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116729,71 +120769,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_else, anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51426] = 2, + [52153] = 4, + ACTIONS(3626), 1, + anon_sym_pat, + STATE(585), 1, + sym_fragment_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3624), 12, + anon_sym_block, + anon_sym_expr, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [52178] = 4, + ACTIONS(3598), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3003), 13, + ACTIONS(3630), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3628), 10, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [51446] = 2, + [52202] = 4, + ACTIONS(3632), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3015), 13, + ACTIONS(3630), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3628), 10, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [51466] = 2, + [52226] = 4, + ACTIONS(3634), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2931), 13, + ACTIONS(3630), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3628), 10, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [51486] = 3, - ACTIONS(544), 1, + [52250] = 3, + ACTIONS(538), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(542), 11, + ACTIONS(536), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116803,76 +120869,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COMMA, anon_sym_GT, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51507] = 5, - ACTIONS(2610), 1, - anon_sym_COLON, - ACTIONS(3580), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2606), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2612), 5, - anon_sym_BANG, + [52272] = 4, + ACTIONS(3640), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51532] = 5, - ACTIONS(2594), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3583), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2596), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51557] = 3, - ACTIONS(550), 1, + ACTIONS(3638), 2, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(548), 11, + ACTIONS(3636), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51578] = 4, - ACTIONS(3590), 1, + [52296] = 4, + ACTIONS(3632), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3588), 2, + ACTIONS(3644), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3586), 9, + ACTIONS(3642), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116880,38 +120909,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51601] = 5, - ACTIONS(2630), 1, - anon_sym_COLON, - ACTIONS(3592), 1, - anon_sym_LPAREN, + [52320] = 4, + ACTIONS(3634), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 5, + ACTIONS(3644), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3642), 10, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2632), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [51626] = 4, - ACTIONS(3599), 1, + [52344] = 4, + ACTIONS(3598), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3597), 2, + ACTIONS(3644), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3595), 9, + ACTIONS(3642), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116919,220 +120949,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51649] = 5, - ACTIONS(2602), 1, - anon_sym_COLON, - ACTIONS(3601), 1, - anon_sym_LPAREN, + [52368] = 4, + ACTIONS(3640), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 5, + ACTIONS(3648), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3646), 10, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2604), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [51674] = 4, - ACTIONS(3517), 1, - anon_sym_COLON_COLON, + [52392] = 3, + ACTIONS(546), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3597), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3595), 9, + ACTIONS(544), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51697] = 4, - ACTIONS(3604), 1, - anon_sym_COLON_COLON, + [52414] = 3, + ACTIONS(552), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3597), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3595), 9, + ACTIONS(550), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51720] = 4, + [52436] = 3, + ACTIONS(3652), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3580), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2606), 4, + ACTIONS(3650), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2612), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [51743] = 4, + [52457] = 3, + ACTIONS(3656), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3592), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2626), 4, + ACTIONS(3654), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2632), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [51766] = 4, + [52478] = 3, + ACTIONS(3660), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3601), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2598), 4, + ACTIONS(3658), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2604), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [51789] = 4, + [52499] = 5, + ACTIONS(2638), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3583), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2590), 4, - anon_sym_SEMI, + ACTIONS(2634), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2596), 6, - anon_sym_BANG, + ACTIONS(3662), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2640), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51812] = 5, - ACTIONS(2610), 1, + [52524] = 5, + ACTIONS(2650), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 3, + ACTIONS(2646), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3580), 3, + ACTIONS(3665), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2612), 5, + ACTIONS(2652), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51837] = 5, - ACTIONS(2594), 1, + [52549] = 5, + ACTIONS(2658), 1, anon_sym_COLON, - ACTIONS(3583), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 5, - anon_sym_RPAREN, + ACTIONS(2654), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2596), 5, + ACTIONS(3668), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2660), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51862] = 3, - ACTIONS(556), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(554), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_in, - anon_sym_PIPE, - [51883] = 4, - ACTIONS(3590), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3608), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3606), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51906] = 5, + [52574] = 5, ACTIONS(2630), 1, anon_sym_COLON, ACTIONS(3), 2, @@ -117142,7 +121134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3592), 3, + ACTIONS(3671), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -117152,90 +121144,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51931] = 4, - ACTIONS(3599), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3612), 2, - anon_sym_COLON, + [52599] = 3, + ACTIONS(3495), 1, anon_sym_EQ, - ACTIONS(3610), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51954] = 4, - ACTIONS(3517), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3612), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3610), 9, + ACTIONS(3489), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51977] = 4, - ACTIONS(3604), 1, - anon_sym_COLON_COLON, + [52620] = 3, + ACTIONS(3676), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3612), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3610), 9, + ACTIONS(3674), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52000] = 5, - ACTIONS(2602), 1, + [52641] = 5, + ACTIONS(2638), 1, anon_sym_COLON, + ACTIONS(3662), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 3, + ACTIONS(2634), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3601), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2604), 5, + anon_sym_LT2, + ACTIONS(2640), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52025] = 3, - ACTIONS(3616), 1, + [52666] = 3, + ACTIONS(3680), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3614), 10, + ACTIONS(3678), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117244,34 +121215,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52045] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3620), 1, - sym_crate, - STATE(1559), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3618), 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, - [52069] = 3, - ACTIONS(3624), 1, + [52687] = 3, + ACTIONS(3684), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3622), 10, + ACTIONS(3682), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117280,61 +121233,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52089] = 9, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - ACTIONS(3626), 1, - anon_sym_for, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2570), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52121] = 9, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - ACTIONS(3628), 1, - anon_sym_for, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2570), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52153] = 3, - ACTIONS(3632), 1, + [52708] = 3, + ACTIONS(3630), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3630), 10, + ACTIONS(3628), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117343,15 +121251,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52173] = 3, - ACTIONS(3636), 1, + [52729] = 3, + ACTIONS(3688), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3634), 10, + ACTIONS(3686), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117360,15 +121269,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52193] = 3, - ACTIONS(3640), 1, + [52750] = 3, + ACTIONS(3692), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3638), 10, + ACTIONS(3690), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117377,15 +121287,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52213] = 3, + [52771] = 3, ACTIONS(3644), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3642), 10, + ACTIONS(3642), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117394,15 +121305,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52233] = 3, - ACTIONS(3648), 1, + [52792] = 3, + ACTIONS(3696), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3646), 10, + ACTIONS(3694), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117411,15 +121323,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52253] = 3, - ACTIONS(3652), 1, + [52813] = 3, + ACTIONS(3700), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 10, + ACTIONS(3698), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117428,35 +121341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52273] = 6, - ACTIONS(3654), 1, - anon_sym_COLON, - ACTIONS(3656), 1, - anon_sym_BANG, - ACTIONS(3658), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52299] = 3, - ACTIONS(3447), 1, + [52834] = 3, + ACTIONS(3704), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 10, + ACTIONS(3702), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117465,38 +121359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52319] = 9, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - ACTIONS(3660), 1, - anon_sym_for, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2570), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52351] = 3, - ACTIONS(3664), 1, + [52855] = 3, + ACTIONS(3708), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3662), 10, + ACTIONS(3706), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117505,15 +121377,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52371] = 3, - ACTIONS(3668), 1, + [52876] = 3, + ACTIONS(3712), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3666), 10, + ACTIONS(3710), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117522,80 +121395,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52391] = 9, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - ACTIONS(3670), 1, - anon_sym_for, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, + [52897] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 4, + ACTIONS(3662), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2634), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [52423] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3672), 1, - sym_crate, - STATE(1559), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3618), 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, - [52447] = 9, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, + ACTIONS(2640), 6, + anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(3674), 1, - anon_sym_for, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2570), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52479] = 3, - ACTIONS(3678), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [52920] = 3, + ACTIONS(3716), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3676), 10, + ACTIONS(3714), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117604,58 +121432,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52499] = 9, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, + [52941] = 5, + ACTIONS(2630), 1, + anon_sym_COLON, + ACTIONS(3671), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2626), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2632), 5, + anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(3680), 1, - anon_sym_for, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [52966] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 4, + ACTIONS(3665), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2646), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [52531] = 6, - ACTIONS(3654), 1, - anon_sym_COLON, - ACTIONS(3656), 1, + anon_sym_LT2, + ACTIONS(2652), 6, anon_sym_BANG, - ACTIONS(3682), 1, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3554), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52557] = 3, - ACTIONS(3686), 1, + anon_sym_PIPE, + [52989] = 3, + ACTIONS(3720), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3684), 10, + ACTIONS(3718), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117664,32 +121489,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52577] = 3, - ACTIONS(3690), 1, - anon_sym_EQ, + [53010] = 5, + ACTIONS(2658), 1, + anon_sym_COLON, + ACTIONS(3668), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3688), 10, - anon_sym_SEMI, + ACTIONS(2654), 5, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_in, + anon_sym_LT2, + ACTIONS(2660), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52597] = 3, - ACTIONS(560), 1, + [53035] = 3, + ACTIONS(3724), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(558), 10, + ACTIONS(3722), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117698,15 +121527,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52617] = 3, - ACTIONS(3694), 1, + [53056] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3668), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2654), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2660), 6, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [53079] = 3, + ACTIONS(3728), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3692), 10, + ACTIONS(3726), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117715,38 +121564,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52637] = 9, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - ACTIONS(3696), 1, - anon_sym_for, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, + [53100] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 4, + ACTIONS(3671), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2626), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [52669] = 3, - ACTIONS(3612), 1, + anon_sym_LT2, + ACTIONS(2632), 6, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [53123] = 3, + ACTIONS(576), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3610), 10, + ACTIONS(574), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117755,15 +121601,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52689] = 3, - ACTIONS(3700), 1, + [53144] = 3, + ACTIONS(3732), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3698), 10, + ACTIONS(3730), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117772,34 +121619,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52709] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3702), 1, - sym_crate, - STATE(1559), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3618), 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, - [52733] = 3, - ACTIONS(3706), 1, + [53165] = 3, + ACTIONS(3736), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3704), 10, + ACTIONS(3734), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117808,15 +121637,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52753] = 3, - ACTIONS(3710), 1, + [53186] = 3, + ACTIONS(3740), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3708), 10, + ACTIONS(3738), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117825,34 +121655,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52773] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3712), 1, - sym_crate, - STATE(1559), 1, - sym_string_literal, + [53207] = 5, + ACTIONS(2650), 1, + anon_sym_COLON, + ACTIONS(3665), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3618), 8, - anon_sym_SEMI, + ACTIONS(2646), 5, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52797] = 3, - ACTIONS(3716), 1, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2652), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [53232] = 3, + ACTIONS(3744), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3714), 10, + ACTIONS(3742), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117861,15 +121693,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52817] = 3, - ACTIONS(3720), 1, + [53253] = 3, + ACTIONS(3748), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3718), 10, + ACTIONS(3746), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117878,15 +121711,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52837] = 3, - ACTIONS(3724), 1, + [53274] = 3, + ACTIONS(3752), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3722), 10, + ACTIONS(3750), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117895,15 +121729,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52857] = 3, - ACTIONS(3728), 1, + [53295] = 3, + ACTIONS(3756), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3726), 10, + ACTIONS(3754), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117912,15 +121747,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52877] = 3, - ACTIONS(3732), 1, + [53316] = 3, + ACTIONS(3760), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3730), 10, + ACTIONS(3758), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117929,15 +121765,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52897] = 3, - ACTIONS(3736), 1, + [53337] = 3, + ACTIONS(3764), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3734), 10, + ACTIONS(3762), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117946,15 +121783,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52917] = 3, - ACTIONS(3740), 1, + [53358] = 3, + ACTIONS(3768), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3738), 10, + ACTIONS(3766), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117963,1972 +121801,2230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52937] = 9, - ACTIONS(3449), 1, + [53379] = 9, + ACTIONS(3497), 1, anon_sym_BANG, - ACTIONS(3455), 1, + ACTIONS(3503), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3507), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, + ACTIONS(3509), 1, anon_sym_COLON_COLON, - ACTIONS(3742), 1, + ACTIONS(3770), 1, anon_sym_for, - STATE(1375), 1, + STATE(1390), 1, sym_type_arguments, - STATE(1400), 1, + STATE(1409), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 4, + ACTIONS(2602), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52969] = 3, - ACTIONS(3746), 1, - anon_sym_EQ, + [53411] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3774), 1, + sym_crate, + STATE(1604), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3744), 10, + ACTIONS(3772), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [52989] = 3, - ACTIONS(3597), 1, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53435] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3776), 1, + sym_crate, + STATE(1604), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3595), 10, + ACTIONS(3772), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [53009] = 3, - ACTIONS(3750), 1, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53459] = 9, + ACTIONS(3497), 1, + anon_sym_BANG, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3509), 1, + anon_sym_COLON_COLON, + ACTIONS(3778), 1, + anon_sym_for, + STATE(1390), 1, + sym_type_arguments, + STATE(1409), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3748), 10, + ACTIONS(2602), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53491] = 9, + ACTIONS(3497), 1, + anon_sym_BANG, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3509), 1, + anon_sym_COLON_COLON, + ACTIONS(3780), 1, + anon_sym_for, + STATE(1390), 1, + sym_type_arguments, + STATE(1409), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2602), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53523] = 9, + ACTIONS(3497), 1, + anon_sym_BANG, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3509), 1, + anon_sym_COLON_COLON, + ACTIONS(3782), 1, + anon_sym_for, + STATE(1390), 1, + sym_type_arguments, + STATE(1409), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2602), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53555] = 9, + ACTIONS(3497), 1, + anon_sym_BANG, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3509), 1, + anon_sym_COLON_COLON, + ACTIONS(3784), 1, + anon_sym_for, + STATE(1390), 1, + sym_type_arguments, + STATE(1409), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2602), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53587] = 6, + ACTIONS(3786), 1, anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [53029] = 3, - ACTIONS(3754), 1, - anon_sym_EQ, + ACTIONS(3788), 1, + anon_sym_BANG, + ACTIONS(3790), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3573), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2684), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53613] = 9, + ACTIONS(3497), 1, + anon_sym_BANG, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3509), 1, + anon_sym_COLON_COLON, + ACTIONS(3792), 1, + anon_sym_for, + STATE(1390), 1, + sym_type_arguments, + STATE(1409), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3752), 10, + ACTIONS(2602), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53645] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3794), 1, + sym_crate, + STATE(1604), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3772), 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, + [53669] = 9, + ACTIONS(3497), 1, + anon_sym_BANG, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3509), 1, + anon_sym_COLON_COLON, + ACTIONS(3796), 1, + anon_sym_for, + STATE(1390), 1, + sym_type_arguments, + STATE(1409), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2602), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53701] = 6, + ACTIONS(3786), 1, anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [53049] = 10, + ACTIONS(3788), 1, + anon_sym_BANG, + ACTIONS(3798), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3573), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2684), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53727] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3800), 1, + sym_crate, + STATE(1604), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3772), 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, + [53751] = 9, + ACTIONS(3497), 1, + anon_sym_BANG, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3509), 1, + anon_sym_COLON_COLON, + ACTIONS(3802), 1, + anon_sym_for, + STATE(1390), 1, + sym_type_arguments, + STATE(1409), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2602), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53783] = 5, + ACTIONS(3788), 1, + anon_sym_BANG, + ACTIONS(3798), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3573), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2684), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53806] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3758), 1, + ACTIONS(3806), 1, anon_sym_RBRACE, - ACTIONS(3760), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - STATE(2042), 1, + STATE(2149), 1, sym_field_declaration, - STATE(2385), 1, + STATE(2392), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1586), 2, + STATE(1577), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53082] = 8, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3764), 1, - sym_identifier, - ACTIONS(3766), 1, - anon_sym_RBRACE, - ACTIONS(3768), 1, - anon_sym_COMMA, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, + [53839] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3527), 1, + anon_sym_trait, + ACTIONS(3812), 1, + anon_sym_impl, + STATE(163), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1883), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1916), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53111] = 7, - ACTIONS(3455), 1, + ACTIONS(2684), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53864] = 5, + ACTIONS(3788), 1, + anon_sym_BANG, + ACTIONS(3790), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3573), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2684), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53887] = 7, + ACTIONS(3503), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3507), 1, anon_sym_LPAREN, - ACTIONS(3772), 1, + ACTIONS(3814), 1, anon_sym_LBRACE, - STATE(1386), 1, + STATE(1392), 1, sym_type_arguments, - STATE(1403), 1, + STATE(1405), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 5, + ACTIONS(2622), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - [53138] = 5, - ACTIONS(3656), 1, + [53914] = 5, + ACTIONS(3788), 1, anon_sym_BANG, - ACTIONS(3682), 1, + ACTIONS(3816), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, + ACTIONS(3573), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2642), 6, + ACTIONS(2684), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53161] = 10, + [53937] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - ACTIONS(3774), 1, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(3776), 1, + ACTIONS(3820), 1, anon_sym_RBRACE, - ACTIONS(3778), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - STATE(2080), 1, + STATE(1948), 1, sym_enum_variant, - STATE(2389), 1, + STATE(2545), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1611), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53194] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3477), 1, - anon_sym_trait, - ACTIONS(3780), 1, - anon_sym_impl, - STATE(154), 1, - sym_block, + [53970] = 8, + ACTIONS(2365), 1, + anon_sym_POUND, + ACTIONS(3824), 1, + sym_identifier, + ACTIONS(3826), 1, + anon_sym_RBRACE, + ACTIONS(3828), 1, + anon_sym_COMMA, + ACTIONS(3830), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53219] = 9, - ACTIONS(3449), 1, + STATE(1889), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1954), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53999] = 9, + ACTIONS(3497), 1, anon_sym_BANG, - ACTIONS(3455), 1, + ACTIONS(3503), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3507), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, + ACTIONS(3509), 1, anon_sym_COLON_COLON, - ACTIONS(3782), 1, + ACTIONS(3832), 1, anon_sym_EQ, - STATE(1400), 1, + STATE(1409), 1, sym_parameters, - STATE(1775), 1, + STATE(1806), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 3, + ACTIONS(2602), 3, anon_sym_PLUS, anon_sym_COMMA, anon_sym_GT, - [53250] = 10, + [54030] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3762), 1, - sym_crate, - ACTIONS(3774), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3784), 1, + ACTIONS(3810), 1, + sym_crate, + ACTIONS(3834), 1, anon_sym_RBRACE, - ACTIONS(3786), 1, + ACTIONS(3836), 1, anon_sym_COMMA, - STATE(1944), 1, - sym_enum_variant, - STATE(2389), 1, + STATE(2036), 1, + sym_field_declaration, + STATE(2392), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1588), 2, + STATE(1574), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53283] = 10, + [54063] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3756), 1, - sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - ACTIONS(3788), 1, + ACTIONS(3818), 1, + sym_identifier, + ACTIONS(3838), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3840), 1, anon_sym_COMMA, - STATE(2116), 1, - sym_field_declaration, - STATE(2385), 1, + STATE(2112), 1, + sym_enum_variant, + STATE(2545), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1558), 2, + STATE(1581), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53316] = 5, - ACTIONS(3656), 1, + [54096] = 7, + ACTIONS(3491), 1, + anon_sym_LPAREN, + ACTIONS(3495), 1, + anon_sym_COLON, + ACTIONS(3497), 1, anon_sym_BANG, - ACTIONS(3792), 1, + ACTIONS(3842), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, + ACTIONS(3501), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53339] = 5, - ACTIONS(3656), 1, - anon_sym_BANG, - ACTIONS(3658), 1, - anon_sym_COLON_COLON, + ACTIONS(3489), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [54122] = 10, + ACTIONS(3844), 1, + anon_sym_SEMI, + ACTIONS(3846), 1, + anon_sym_LPAREN, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(292), 1, + sym_field_declaration_list, + STATE(1639), 1, + sym_type_parameters, + STATE(2120), 1, + sym_ordered_field_declaration_list, + STATE(2240), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53362] = 5, - ACTIONS(3794), 1, + [54154] = 10, + ACTIONS(3846), 1, + anon_sym_LPAREN, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(3854), 1, anon_sym_SEMI, - ACTIONS(3796), 1, + ACTIONS(3856), 1, anon_sym_LBRACE, - STATE(351), 1, - sym_declaration_list, + STATE(1057), 1, + sym_field_declaration_list, + STATE(1631), 1, + sym_type_parameters, + STATE(2075), 1, + sym_ordered_field_declaration_list, + STATE(2293), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53384] = 7, - ACTIONS(2333), 1, + [54186] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3764), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3798), 1, + ACTIONS(3810), 1, + sym_crate, + ACTIONS(3858), 1, anon_sym_RBRACE, + STATE(2341), 1, + sym_field_declaration, + STATE(2392), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1883), 2, + STATE(1588), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2254), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53410] = 7, - ACTIONS(3455), 1, + [54216] = 7, + ACTIONS(3503), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3507), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3860), 1, anon_sym_for, - STATE(1386), 1, + STATE(1392), 1, sym_type_arguments, - STATE(1403), 1, + STATE(1405), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2622), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53436] = 7, - ACTIONS(3455), 1, + [54242] = 7, + ACTIONS(3503), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3507), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3862), 1, anon_sym_for, - STATE(1386), 1, + STATE(1392), 1, sym_type_arguments, - STATE(1403), 1, + STATE(1405), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2622), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53462] = 5, - ACTIONS(3804), 1, - anon_sym_SEMI, - ACTIONS(3806), 1, - anon_sym_LBRACE, - STATE(953), 1, - sym_declaration_list, + [54268] = 7, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3864), 1, + anon_sym_for, + STATE(1392), 1, + sym_type_arguments, + STATE(1405), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53484] = 9, + ACTIONS(2622), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54294] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - ACTIONS(3774), 1, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(3808), 1, + ACTIONS(3866), 1, anon_sym_RBRACE, - STATE(2239), 1, + STATE(2348), 1, sym_enum_variant, - STATE(2389), 1, + STATE(2545), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1577), 2, + STATE(1585), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53514] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3762), 1, - sym_crate, - ACTIONS(3774), 1, + [54324] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3868), 1, sym_identifier, - ACTIONS(3810), 1, - anon_sym_RBRACE, - STATE(2239), 1, - sym_enum_variant, - STATE(2389), 1, - sym_visibility_modifier, + STATE(96), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1577), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53544] = 9, - ACTIONS(2329), 1, + ACTIONS(3870), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54346] = 7, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3872), 1, + anon_sym_for, + STATE(1392), 1, + sym_type_arguments, + STATE(1405), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2622), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54372] = 9, + ACTIONS(2361), 1, anon_sym_SQUOTE, - ACTIONS(3812), 1, + ACTIONS(3874), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3876), 1, anon_sym_const, - ACTIONS(3816), 1, + ACTIONS(3878), 1, anon_sym_GT, - ACTIONS(3818), 1, + ACTIONS(3880), 1, sym_metavariable, - STATE(1810), 1, + STATE(1862), 1, sym_lifetime, - STATE(2095), 1, + STATE(2141), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2282), 2, + STATE(2205), 2, sym_const_parameter, sym_optional_type_parameter, - [53574] = 7, - ACTIONS(3455), 1, + [54402] = 7, + ACTIONS(3503), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3507), 1, anon_sym_LPAREN, - ACTIONS(3820), 1, + ACTIONS(3882), 1, anon_sym_for, - STATE(1386), 1, + STATE(1392), 1, sym_type_arguments, - STATE(1403), 1, + STATE(1405), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2622), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53600] = 10, - ACTIONS(3822), 1, - anon_sym_SEMI, - ACTIONS(3824), 1, + [54428] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2365), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + sym_crate, + ACTIONS(3818), 1, + sym_identifier, + ACTIONS(3884), 1, + anon_sym_RBRACE, + STATE(2348), 1, + sym_enum_variant, + STATE(2545), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1585), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54458] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2365), 1, + anon_sym_POUND, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3810), 1, + sym_crate, + ACTIONS(3886), 1, + anon_sym_RBRACE, + STATE(2341), 1, + sym_field_declaration, + STATE(2392), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1588), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54488] = 10, + ACTIONS(3846), 1, anon_sym_LPAREN, - ACTIONS(3826), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3852), 1, anon_sym_LT, - STATE(430), 1, + ACTIONS(3856), 1, + anon_sym_LBRACE, + ACTIONS(3888), 1, + anon_sym_SEMI, + STATE(892), 1, sym_field_declaration_list, - STATE(1617), 1, + STATE(1657), 1, sym_type_parameters, - STATE(2100), 1, + STATE(2168), 1, sym_ordered_field_declaration_list, - STATE(2306), 1, + STATE(2184), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53632] = 5, - ACTIONS(15), 1, + [54520] = 7, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3890), 1, + anon_sym_for, + STATE(1392), 1, + sym_type_arguments, + STATE(1405), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2622), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3832), 1, - sym_identifier, - STATE(72), 1, - sym_block, + anon_sym_PLUS, + anon_sym_where, + [54546] = 5, + ACTIONS(3892), 1, + anon_sym_SEMI, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(1030), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3834), 6, + ACTIONS(2684), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53654] = 9, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3812), 1, + [54568] = 7, + ACTIONS(2365), 1, + anon_sym_POUND, + ACTIONS(3824), 1, sym_identifier, - ACTIONS(3814), 1, - anon_sym_const, - ACTIONS(3818), 1, - sym_metavariable, - ACTIONS(3836), 1, - anon_sym_GT, - STATE(1810), 1, - sym_lifetime, - STATE(2095), 1, - sym_constrained_type_parameter, + ACTIONS(3830), 1, + anon_sym_DOT_DOT, + ACTIONS(3896), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2282), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53684] = 9, + STATE(1889), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2358), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54594] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3762), 1, - sym_crate, - ACTIONS(3774), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3838), 1, + ACTIONS(3810), 1, + sym_crate, + ACTIONS(3898), 1, anon_sym_RBRACE, - STATE(2239), 1, - sym_enum_variant, - STATE(2389), 1, + STATE(2341), 1, + sym_field_declaration, + STATE(2392), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1577), 2, + STATE(1588), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53714] = 5, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3840), 1, + [54624] = 7, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3900), 1, + anon_sym_for, + STATE(1392), 1, + sym_type_arguments, + STATE(1405), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2622), 4, anon_sym_SEMI, - STATE(468), 1, - sym_declaration_list, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54650] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2365), 1, + anon_sym_POUND, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3810), 1, + sym_crate, + ACTIONS(3902), 1, + anon_sym_RBRACE, + STATE(2341), 1, + sym_field_declaration, + STATE(2392), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53736] = 9, - ACTIONS(2329), 1, + STATE(1588), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54680] = 9, + ACTIONS(2361), 1, anon_sym_SQUOTE, - ACTIONS(3812), 1, + ACTIONS(3874), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3876), 1, anon_sym_const, - ACTIONS(3818), 1, + ACTIONS(3880), 1, sym_metavariable, - ACTIONS(3842), 1, + ACTIONS(3904), 1, anon_sym_GT, - STATE(1810), 1, + STATE(1903), 1, sym_lifetime, - STATE(2095), 1, + STATE(2141), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2282), 2, + STATE(2205), 2, sym_const_parameter, sym_optional_type_parameter, - [53766] = 9, - ACTIONS(2329), 1, + [54710] = 9, + ACTIONS(2361), 1, anon_sym_SQUOTE, - ACTIONS(3812), 1, + ACTIONS(3874), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3876), 1, anon_sym_const, - ACTIONS(3818), 1, + ACTIONS(3880), 1, sym_metavariable, - ACTIONS(3844), 1, + ACTIONS(3906), 1, anon_sym_GT, - STATE(1810), 1, + STATE(1903), 1, sym_lifetime, - STATE(2095), 1, + STATE(2141), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2282), 2, + STATE(2205), 2, sym_const_parameter, sym_optional_type_parameter, - [53796] = 5, + [54740] = 5, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3846), 1, + ACTIONS(3908), 1, anon_sym_move, - STATE(91), 1, + STATE(93), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(2684), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53818] = 7, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3764), 1, - sym_identifier, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3848), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1883), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2254), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53844] = 9, + [54762] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - ACTIONS(3850), 1, + ACTIONS(3910), 1, anon_sym_RBRACE, - STATE(2218), 1, + STATE(2341), 1, sym_field_declaration, - STATE(2385), 1, + STATE(2392), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1588), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53874] = 9, + [54792] = 5, + ACTIONS(3912), 1, + anon_sym_SEMI, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(442), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2684), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54814] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3756), 1, - sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - ACTIONS(3852), 1, + ACTIONS(3818), 1, + sym_identifier, + ACTIONS(3916), 1, anon_sym_RBRACE, - STATE(2218), 1, - sym_field_declaration, - STATE(2385), 1, + STATE(2348), 1, + sym_enum_variant, + STATE(2545), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1585), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53904] = 9, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3812), 1, - sym_identifier, - ACTIONS(3814), 1, - anon_sym_const, - ACTIONS(3818), 1, - sym_metavariable, - ACTIONS(3854), 1, - anon_sym_GT, - STATE(1822), 1, - sym_lifetime, - STATE(2095), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2282), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53934] = 7, - ACTIONS(3455), 1, + [54844] = 7, + ACTIONS(3503), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3507), 1, anon_sym_LPAREN, - ACTIONS(3856), 1, + ACTIONS(3918), 1, anon_sym_for, - STATE(1386), 1, + STATE(1392), 1, sym_type_arguments, - STATE(1403), 1, + STATE(1405), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2622), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53960] = 9, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3812), 1, - sym_identifier, - ACTIONS(3814), 1, - anon_sym_const, - ACTIONS(3818), 1, - sym_metavariable, - ACTIONS(3858), 1, - anon_sym_GT, - STATE(1810), 1, - sym_lifetime, - STATE(2095), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2282), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53990] = 10, - ACTIONS(3824), 1, + [54870] = 10, + ACTIONS(3846), 1, anon_sym_LPAREN, - ACTIONS(3828), 1, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3852), 1, anon_sym_LT, - ACTIONS(3860), 1, + ACTIONS(3920), 1, anon_sym_SEMI, - ACTIONS(3862), 1, - anon_sym_LBRACE, - STATE(1023), 1, + STATE(374), 1, sym_field_declaration_list, - STATE(1624), 1, + STATE(1612), 1, sym_type_parameters, - STATE(2043), 1, + STATE(2046), 1, sym_ordered_field_declaration_list, - STATE(2222), 1, + STATE(2245), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54022] = 9, + [54902] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - ACTIONS(3864), 1, + ACTIONS(3922), 1, anon_sym_RBRACE, - STATE(2218), 1, + STATE(2341), 1, sym_field_declaration, - STATE(2385), 1, + STATE(2392), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1588), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54052] = 7, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3866), 1, - anon_sym_for, - STATE(1386), 1, - sym_type_arguments, - STATE(1403), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54078] = 9, - ACTIONS(2329), 1, + [54932] = 9, + ACTIONS(2361), 1, anon_sym_SQUOTE, - ACTIONS(3812), 1, + ACTIONS(3874), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3876), 1, anon_sym_const, - ACTIONS(3818), 1, + ACTIONS(3880), 1, sym_metavariable, - ACTIONS(3868), 1, + ACTIONS(3924), 1, anon_sym_GT, - STATE(1810), 1, + STATE(1903), 1, sym_lifetime, - STATE(2095), 1, + STATE(2141), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2282), 2, + STATE(2205), 2, sym_const_parameter, sym_optional_type_parameter, - [54108] = 9, + [54962] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3756), 1, - sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - ACTIONS(3870), 1, + ACTIONS(3818), 1, + sym_identifier, + ACTIONS(3926), 1, anon_sym_RBRACE, - STATE(2218), 1, - sym_field_declaration, - STATE(2385), 1, + STATE(2348), 1, + sym_enum_variant, + STATE(2545), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1585), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54138] = 10, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3826), 1, + [54992] = 9, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(3874), 1, + sym_identifier, + ACTIONS(3876), 1, + anon_sym_const, + ACTIONS(3880), 1, + sym_metavariable, + ACTIONS(3928), 1, + anon_sym_GT, + STATE(1903), 1, + sym_lifetime, + STATE(2141), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2205), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55022] = 5, + ACTIONS(3914), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(3872), 1, + ACTIONS(3930), 1, anon_sym_SEMI, - STATE(373), 1, - sym_field_declaration_list, - STATE(1604), 1, - sym_type_parameters, - STATE(2004), 1, - sym_ordered_field_declaration_list, - STATE(2243), 1, - sym_where_clause, + STATE(469), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54170] = 9, + ACTIONS(2684), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55044] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - ACTIONS(3774), 1, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(3874), 1, + ACTIONS(3932), 1, anon_sym_RBRACE, - STATE(2239), 1, + STATE(2348), 1, sym_enum_variant, - STATE(2389), 1, + STATE(2545), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1577), 2, + STATE(1585), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54200] = 9, + [55074] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - ACTIONS(3774), 1, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(3876), 1, + ACTIONS(3934), 1, anon_sym_RBRACE, - STATE(2239), 1, + STATE(2348), 1, sym_enum_variant, - STATE(2389), 1, + STATE(2545), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1577), 2, + STATE(1585), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54230] = 7, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3878), 1, - anon_sym_for, - STATE(1386), 1, - sym_type_arguments, - STATE(1403), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54256] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3762), 1, - sym_crate, - ACTIONS(3774), 1, + [55104] = 9, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(3874), 1, sym_identifier, + ACTIONS(3876), 1, + anon_sym_const, ACTIONS(3880), 1, - anon_sym_RBRACE, - STATE(2239), 1, - sym_enum_variant, - STATE(2389), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1577), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54286] = 5, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3882), 1, - anon_sym_SEMI, - STATE(1001), 1, - sym_declaration_list, + sym_metavariable, + ACTIONS(3936), 1, + anon_sym_GT, + STATE(1903), 1, + sym_lifetime, + STATE(2141), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, + STATE(2205), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55134] = 9, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(3874), 1, + sym_identifier, + ACTIONS(3876), 1, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54308] = 7, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_COLON, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3884), 1, - anon_sym_COLON_COLON, + ACTIONS(3880), 1, + sym_metavariable, + ACTIONS(3938), 1, + anon_sym_GT, + STATE(1903), 1, + sym_lifetime, + STATE(2141), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3441), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [54334] = 7, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3886), 1, - anon_sym_for, - STATE(1386), 1, - sym_type_arguments, - STATE(1403), 1, - sym_parameters, + STATE(2205), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55164] = 9, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(3874), 1, + sym_identifier, + ACTIONS(3876), 1, + anon_sym_const, + ACTIONS(3880), 1, + sym_metavariable, + ACTIONS(3940), 1, + anon_sym_GT, + STATE(1903), 1, + sym_lifetime, + STATE(2141), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54360] = 9, - ACTIONS(2329), 1, + STATE(2205), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55194] = 9, + ACTIONS(2361), 1, anon_sym_SQUOTE, - ACTIONS(3812), 1, + ACTIONS(3874), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3876), 1, anon_sym_const, - ACTIONS(3818), 1, + ACTIONS(3880), 1, sym_metavariable, - ACTIONS(3888), 1, + ACTIONS(3942), 1, anon_sym_GT, - STATE(1810), 1, + STATE(1903), 1, sym_lifetime, - STATE(2095), 1, + STATE(2141), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2282), 2, + STATE(2205), 2, sym_const_parameter, sym_optional_type_parameter, - [54390] = 7, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3890), 1, - anon_sym_for, - STATE(1386), 1, - sym_type_arguments, - STATE(1403), 1, - sym_parameters, + [55224] = 5, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(3944), 1, + anon_sym_SEMI, + STATE(1147), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54416] = 9, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3812), 1, + ACTIONS(2684), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55246] = 7, + ACTIONS(2365), 1, + anon_sym_POUND, + ACTIONS(3824), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3830), 1, + anon_sym_DOT_DOT, + ACTIONS(3946), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1889), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2358), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [55272] = 4, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + STATE(1604), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3772), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3818), 1, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55291] = 8, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(3876), 1, + anon_sym_const, + ACTIONS(3948), 1, + sym_identifier, + ACTIONS(3950), 1, sym_metavariable, - ACTIONS(3892), 1, - anon_sym_GT, - STATE(1810), 1, + STATE(1797), 1, sym_lifetime, - STATE(2095), 1, + STATE(1813), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2282), 2, + STATE(1916), 2, sym_const_parameter, sym_optional_type_parameter, - [54446] = 9, + [55318] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - ACTIONS(3894), 1, - anon_sym_RBRACE, - STATE(2218), 1, + STATE(2105), 1, sym_field_declaration, - STATE(2385), 1, + STATE(2392), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1175), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54476] = 9, + [55345] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - ACTIONS(3896), 1, - anon_sym_RBRACE, - STATE(2218), 1, + STATE(2341), 1, sym_field_declaration, - STATE(2385), 1, + STATE(2392), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1588), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54506] = 10, + [55372] = 6, + ACTIONS(2365), 1, + anon_sym_POUND, ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3828), 1, - anon_sym_where, + sym_identifier, ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(3862), 1, - anon_sym_LBRACE, - ACTIONS(3898), 1, - anon_sym_SEMI, - STATE(865), 1, - sym_field_declaration_list, - STATE(1625), 1, - sym_type_parameters, - STATE(2135), 1, - sym_ordered_field_declaration_list, - STATE(2169), 1, - sym_where_clause, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54538] = 8, + STATE(1889), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2358), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [55395] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - STATE(2218), 1, + STATE(2137), 1, sym_field_declaration, - STATE(2385), 1, + STATE(2392), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1175), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54565] = 8, + [55422] = 9, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(3952), 1, + anon_sym_COLON, + ACTIONS(3954), 1, + anon_sym_LT, + STATE(392), 1, + sym_declaration_list, + STATE(1681), 1, + sym_type_parameters, + STATE(1900), 1, + sym_trait_bounds, + STATE(2320), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55451] = 4, + ACTIONS(3958), 1, + anon_sym_PLUS, + STATE(1597), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3956), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55470] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3756), 1, - sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - STATE(2162), 1, - sym_field_declaration, - STATE(2385), 1, + ACTIONS(3818), 1, + sym_identifier, + STATE(2348), 1, + sym_enum_variant, + STATE(2545), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1098), 2, + STATE(1585), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54592] = 8, + [55497] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3756), 1, - sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - STATE(2117), 1, - sym_field_declaration, - STATE(2385), 1, + ACTIONS(3818), 1, + sym_identifier, + STATE(2164), 1, + sym_enum_variant, + STATE(2545), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1098), 2, + STATE(1175), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54619] = 2, + [55524] = 4, + ACTIONS(3962), 1, + anon_sym_PLUS, + STATE(1582), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3900), 8, + ACTIONS(3960), 6, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55543] = 5, + ACTIONS(3968), 1, + anon_sym_fn, + ACTIONS(3970), 1, + anon_sym_extern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1583), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3965), 4, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, + [55564] = 5, + ACTIONS(3975), 1, + anon_sym_fn, + ACTIONS(3977), 1, anon_sym_extern, - [54634] = 6, - ACTIONS(2333), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1583), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3973), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [55585] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3764), 1, + ACTIONS(3810), 1, + sym_crate, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, + STATE(2278), 1, + sym_enum_variant, + STATE(2545), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1883), 2, + STATE(1175), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2254), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [54657] = 9, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(3904), 1, - anon_sym_LT, - STATE(438), 1, - sym_declaration_list, - STATE(1723), 1, - sym_type_parameters, - STATE(1793), 1, - sym_trait_bounds, - STATE(2321), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54686] = 6, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3906), 1, - anon_sym_RBRACK, + [55612] = 4, + ACTIONS(3979), 1, + anon_sym_PLUS, + STATE(1597), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, + ACTIONS(3956), 6, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3548), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [54709] = 9, - ACTIONS(3806), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, anon_sym_where, - ACTIONS(3902), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55631] = 7, + ACTIONS(2622), 1, + anon_sym_PLUS, + ACTIONS(3567), 1, + anon_sym_PIPE, + ACTIONS(3569), 1, anon_sym_COLON, - ACTIONS(3904), 1, - anon_sym_LT, - STATE(903), 1, - sym_declaration_list, - STATE(1714), 1, - sym_type_parameters, - STATE(1796), 1, - sym_trait_bounds, - STATE(2201), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54738] = 5, - ACTIONS(3911), 1, - anon_sym_fn, - ACTIONS(3913), 1, - anon_sym_extern, + ACTIONS(3798), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1572), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3909), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [54759] = 8, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3915), 1, - sym_identifier, - ACTIONS(3917), 1, - anon_sym_RBRACE, - ACTIONS(3919), 1, + ACTIONS(3573), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3981), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3921), 1, - anon_sym_ref, - ACTIONS(3923), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1992), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54786] = 4, - ACTIONS(3501), 1, - anon_sym_trait, - ACTIONS(3925), 1, - anon_sym_impl, + [55656] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2365), 1, + anon_sym_POUND, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3810), 1, + sym_crate, + STATE(2179), 1, + sym_field_declaration, + STATE(2392), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54805] = 4, - ACTIONS(3590), 1, + STATE(1175), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [55683] = 4, + ACTIONS(3640), 1, anon_sym_COLON_COLON, - ACTIONS(3927), 1, + ACTIONS(3984), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(2684), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54824] = 8, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3934), 1, + [55702] = 9, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(3937), 1, - anon_sym_LBRACK, - STATE(1568), 1, - aux_sym_macro_definition_repeat1, - STATE(2422), 1, - sym_token_tree_pattern, - STATE(2507), 1, - sym_macro_rule, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3932), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [54851] = 8, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3814), 1, - anon_sym_const, - ACTIONS(3940), 1, - sym_identifier, - ACTIONS(3942), 1, - sym_metavariable, - STATE(1771), 1, - sym_lifetime, - STATE(1816), 1, - sym_constrained_type_parameter, + ACTIONS(3952), 1, + anon_sym_COLON, + ACTIONS(3954), 1, + anon_sym_LT, + STATE(907), 1, + sym_declaration_list, + STATE(1706), 1, + sym_type_parameters, + STATE(1877), 1, + sym_trait_bounds, + STATE(2189), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2096), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54878] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3762), 1, - sym_crate, - ACTIONS(3774), 1, - sym_identifier, - STATE(2239), 1, - sym_enum_variant, - STATE(2389), 1, - sym_visibility_modifier, + [55731] = 9, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(3952), 1, + anon_sym_COLON, + ACTIONS(3954), 1, + anon_sym_LT, + STATE(1055), 1, + sym_declaration_list, + STATE(1752), 1, + sym_type_parameters, + STATE(1841), 1, + sym_trait_bounds, + STATE(2292), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1577), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54905] = 4, - ACTIONS(3534), 1, + [55760] = 9, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(3952), 1, + anon_sym_COLON, + ACTIONS(3954), 1, + anon_sym_LT, + STATE(956), 1, + sym_declaration_list, + STATE(1662), 1, + sym_type_parameters, + STATE(1907), 1, + sym_trait_bounds, + STATE(2235), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55789] = 4, + ACTIONS(3606), 1, anon_sym_COLON_COLON, - ACTIONS(3656), 1, + ACTIONS(3788), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(2684), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54924] = 5, - ACTIONS(3947), 1, - anon_sym_fn, - ACTIONS(3949), 1, - anon_sym_extern, + [55808] = 4, + ACTIONS(2804), 1, + anon_sym_COLON_COLON, + ACTIONS(3986), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1572), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3944), 4, + ACTIONS(2684), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_unsafe, - [54945] = 9, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + anon_sym_extern, + [55827] = 9, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3902), 1, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(3952), 1, anon_sym_COLON, - ACTIONS(3904), 1, + ACTIONS(3954), 1, anon_sym_LT, - STATE(879), 1, + STATE(329), 1, sym_declaration_list, - STATE(1664), 1, + STATE(1734), 1, sym_type_parameters, STATE(1837), 1, sym_trait_bounds, - STATE(2172), 1, + STATE(2297), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54974] = 4, - ACTIONS(3954), 1, + [55856] = 4, + ACTIONS(3551), 1, + anon_sym_trait, + ACTIONS(3988), 1, + anon_sym_impl, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2684), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55875] = 4, + ACTIONS(3958), 1, anon_sym_PLUS, - STATE(1574), 1, + STATE(1582), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3952), 6, + ACTIONS(3990), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54993] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3762), 1, - sym_crate, - ACTIONS(3774), 1, - sym_identifier, - STATE(2145), 1, - sym_enum_variant, - STATE(2389), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1098), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55020] = 9, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(3904), 1, - anon_sym_LT, - STATE(309), 1, - sym_declaration_list, - STATE(1688), 1, - sym_type_parameters, - STATE(1818), 1, - sym_trait_bounds, - STATE(2246), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55049] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3762), 1, - sym_crate, - ACTIONS(3774), 1, - sym_identifier, - STATE(2176), 1, - sym_enum_variant, - STATE(2389), 1, - sym_visibility_modifier, + [55894] = 6, + ACTIONS(3491), 1, + anon_sym_LPAREN, + ACTIONS(3497), 1, + anon_sym_BANG, + ACTIONS(3992), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1098), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55076] = 8, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3915), 1, - sym_identifier, - ACTIONS(3921), 1, - anon_sym_ref, - ACTIONS(3923), 1, - sym_mutable_specifier, - ACTIONS(3957), 1, - anon_sym_RBRACE, - ACTIONS(3959), 1, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3489), 3, + anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_PIPE, + [55917] = 8, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(3876), 1, + anon_sym_const, + ACTIONS(3948), 1, + sym_identifier, + ACTIONS(3950), 1, + sym_metavariable, + STATE(1680), 1, + sym_lifetime, + STATE(1813), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2006), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55103] = 8, - ACTIONS(2329), 1, + STATE(1916), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55944] = 8, + ACTIONS(2361), 1, anon_sym_SQUOTE, - ACTIONS(3814), 1, - anon_sym_const, - ACTIONS(3961), 1, + ACTIONS(3874), 1, sym_identifier, - ACTIONS(3963), 1, + ACTIONS(3876), 1, + anon_sym_const, + ACTIONS(3880), 1, sym_metavariable, - STATE(1785), 1, + STATE(1903), 1, sym_lifetime, - STATE(1869), 1, + STATE(2141), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2030), 2, + STATE(2205), 2, sym_const_parameter, sym_optional_type_parameter, - [55130] = 4, - ACTIONS(3967), 1, - anon_sym_PLUS, - STATE(1574), 1, - aux_sym_trait_bounds_repeat1, + [55971] = 6, + ACTIONS(3816), 1, + anon_sym_COLON_COLON, + ACTIONS(3981), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3965), 6, + ACTIONS(2622), 2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(3567), 2, anon_sym_COMMA, - anon_sym_GT, - [55149] = 8, - ACTIONS(2329), 1, + anon_sym_PIPE, + ACTIONS(3573), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55994] = 8, + ACTIONS(2361), 1, anon_sym_SQUOTE, - ACTIONS(3814), 1, + ACTIONS(3876), 1, anon_sym_const, - ACTIONS(3940), 1, + ACTIONS(3994), 1, sym_identifier, - ACTIONS(3942), 1, + ACTIONS(3996), 1, sym_metavariable, - STATE(1657), 1, + STATE(1768), 1, sym_lifetime, - STATE(1816), 1, + STATE(1836), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2096), 2, + STATE(2062), 2, sym_const_parameter, sym_optional_type_parameter, - [55176] = 4, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - STATE(1559), 1, - sym_string_literal, + [56021] = 9, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(3952), 1, + anon_sym_COLON, + ACTIONS(3954), 1, + anon_sym_LT, + STATE(379), 1, + sym_declaration_list, + STATE(1703), 1, + sym_type_parameters, + STATE(1826), 1, + sym_trait_bounds, + STATE(2363), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56050] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3618), 6, + ACTIONS(3998), 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, - [55195] = 9, - ACTIONS(3796), 1, + [56065] = 4, + ACTIONS(904), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(3904), 1, - anon_sym_LT, - STATE(378), 1, - sym_declaration_list, - STATE(1693), 1, - sym_type_parameters, - STATE(1809), 1, - sym_trait_bounds, - STATE(2244), 1, - sym_where_clause, + STATE(1493), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55224] = 8, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3812), 1, - sym_identifier, - ACTIONS(3814), 1, + ACTIONS(2684), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3818), 1, - sym_metavariable, - STATE(1810), 1, - sym_lifetime, - STATE(2095), 1, - sym_constrained_type_parameter, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56084] = 8, + ACTIONS(4000), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, + anon_sym_LBRACE, + ACTIONS(4008), 1, + anon_sym_LBRACK, + STATE(1606), 1, + aux_sym_macro_definition_repeat1, + STATE(2451), 1, + sym_token_tree_pattern, + STATE(2471), 1, + sym_macro_rule, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2282), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55251] = 6, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3969), 1, - anon_sym_COLON_COLON, + ACTIONS(4003), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [56111] = 8, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(4011), 1, + sym_identifier, + ACTIONS(4013), 1, + anon_sym_RBRACE, + ACTIONS(4015), 1, + anon_sym_COMMA, + ACTIONS(4017), 1, + anon_sym_ref, + ACTIONS(4019), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3441), 3, - anon_sym_RBRACK, + STATE(1980), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56138] = 8, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(4011), 1, + sym_identifier, + ACTIONS(4017), 1, + anon_sym_ref, + ACTIONS(4019), 1, + sym_mutable_specifier, + ACTIONS(4021), 1, + anon_sym_RBRACE, + ACTIONS(4023), 1, anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1987), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56165] = 6, + ACTIONS(3567), 1, anon_sym_PIPE, - [55274] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3756), 1, - sym_identifier, - ACTIONS(3762), 1, - sym_crate, - STATE(2038), 1, - sym_field_declaration, - STATE(2385), 1, - sym_visibility_modifier, + ACTIONS(3569), 1, + anon_sym_COLON, + ACTIONS(3790), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1098), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55301] = 4, - ACTIONS(904), 1, - anon_sym_LBRACE, - STATE(1482), 1, - sym_block, + ACTIONS(3573), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2622), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [56188] = 4, + ACTIONS(4025), 1, + anon_sym_PLUS, + STATE(1597), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55320] = 8, + ACTIONS(3956), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56207] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(3762), 1, + ACTIONS(3810), 1, sym_crate, - ACTIONS(3774), 1, + ACTIONS(3818), 1, sym_identifier, - STATE(2134), 1, + STATE(2165), 1, sym_enum_variant, - STATE(2389), 1, + STATE(2545), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1098), 2, + STATE(1175), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55347] = 4, - ACTIONS(2728), 1, - anon_sym_COLON_COLON, - ACTIONS(3971), 1, - anon_sym_BANG, + [56234] = 8, + ACTIONS(3846), 1, + anon_sym_LPAREN, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4027), 1, + anon_sym_SEMI, + STATE(360), 1, + sym_field_declaration_list, + STATE(2043), 1, + sym_ordered_field_declaration_list, + STATE(2356), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56260] = 3, + ACTIONS(4029), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(3870), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55366] = 4, - ACTIONS(3967), 1, - anon_sym_PLUS, - STATE(1580), 1, - aux_sym_trait_bounds_repeat1, + [56276] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3973), 6, + ACTIONS(3960), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55385] = 7, - ACTIONS(2614), 1, - anon_sym_PLUS, - ACTIONS(3548), 1, - anon_sym_PIPE, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(3658), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3906), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [55410] = 4, - ACTIONS(3975), 1, - anon_sym_PLUS, - STATE(1580), 1, - aux_sym_trait_bounds_repeat1, + [56290] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3973), 6, + ACTIONS(3960), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55429] = 4, - ACTIONS(3977), 1, - anon_sym_PLUS, - STATE(1580), 1, - aux_sym_trait_bounds_repeat1, + [56304] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3973), 6, + ACTIONS(3960), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55448] = 6, - ACTIONS(3548), 1, - anon_sym_PIPE, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(3682), 1, + [56318] = 3, + ACTIONS(2804), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2614), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [55471] = 9, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(3904), 1, - anon_sym_LT, - STATE(1019), 1, - sym_declaration_list, - STATE(1737), 1, - sym_type_parameters, - STATE(1884), 1, - sym_trait_bounds, - STATE(2221), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55500] = 8, - ACTIONS(3979), 1, + ACTIONS(2684), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56334] = 8, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(4033), 1, + anon_sym_RPAREN, + ACTIONS(4035), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_RBRACE, - ACTIONS(3985), 1, + ACTIONS(4037), 1, anon_sym_LBRACK, - STATE(1568), 1, + STATE(1629), 1, aux_sym_macro_definition_repeat1, - STATE(2167), 1, + STATE(2332), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2451), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55526] = 8, - ACTIONS(3979), 1, + [56360] = 8, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(4035), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(4037), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, + ACTIONS(4039), 1, anon_sym_RPAREN, - STATE(1568), 1, + STATE(1626), 1, aux_sym_macro_definition_repeat1, - STATE(2280), 1, + STATE(2333), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2451), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55552] = 7, - ACTIONS(3441), 1, - anon_sym_PIPE, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_COLON, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3989), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [55576] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3991), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55590] = 6, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3862), 1, - anon_sym_LBRACE, - ACTIONS(3995), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3993), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2128), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [55612] = 8, - ACTIONS(3979), 1, + [56386] = 8, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(4035), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(4037), 1, anon_sym_LBRACK, - ACTIONS(3997), 1, + ACTIONS(4041), 1, anon_sym_RPAREN, - STATE(1618), 1, + STATE(1606), 1, aux_sym_macro_definition_repeat1, - STATE(2307), 1, + STATE(2214), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2451), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55638] = 2, + [56412] = 3, + ACTIONS(4043), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3870), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56428] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3952), 7, + ACTIONS(3960), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -119936,9341 +124032,9533 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55652] = 8, - ACTIONS(3979), 1, + [56442] = 8, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(4035), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(4037), 1, anon_sym_LBRACK, - ACTIONS(3999), 1, - anon_sym_RPAREN, - STATE(1597), 1, + ACTIONS(4045), 1, + anon_sym_RBRACE, + STATE(1635), 1, aux_sym_macro_definition_repeat1, - STATE(2305), 1, + STATE(2255), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2451), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55678] = 8, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3826), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4001), 1, - anon_sym_SEMI, - STATE(403), 1, - sym_field_declaration_list, - STATE(2048), 1, - sym_ordered_field_declaration_list, - STATE(2328), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55704] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4003), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55718] = 8, - ACTIONS(3979), 1, + [56468] = 8, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(4035), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(4037), 1, anon_sym_LBRACK, - ACTIONS(4005), 1, + ACTIONS(4047), 1, anon_sym_RBRACE, - STATE(1568), 1, + STATE(1637), 1, aux_sym_macro_definition_repeat1, - STATE(2292), 1, + STATE(2252), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2451), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55744] = 3, - ACTIONS(2728), 1, + [56494] = 7, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_LPAREN, + ACTIONS(3495), 1, + anon_sym_COLON, + ACTIONS(3497), 1, + anon_sym_BANG, + ACTIONS(4049), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55760] = 8, - ACTIONS(3979), 1, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [56518] = 8, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(4035), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(4037), 1, anon_sym_LBRACK, - ACTIONS(4007), 1, + ACTIONS(4051), 1, anon_sym_RPAREN, - STATE(1568), 1, + STATE(1606), 1, aux_sym_macro_definition_repeat1, - STATE(2293), 1, + STATE(2310), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2451), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55786] = 8, - ACTIONS(3979), 1, + [56544] = 8, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(4035), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(4037), 1, anon_sym_LBRACK, - ACTIONS(4009), 1, - anon_sym_RPAREN, - STATE(1608), 1, + ACTIONS(4053), 1, + anon_sym_RBRACE, + STATE(1606), 1, aux_sym_macro_definition_repeat1, - STATE(2323), 1, + STATE(2213), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2451), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55812] = 3, - ACTIONS(4011), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3834), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55828] = 8, - ACTIONS(3979), 1, + [56570] = 8, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(4035), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(4037), 1, anon_sym_LBRACK, - ACTIONS(4013), 1, - anon_sym_RBRACE, - STATE(1568), 1, + ACTIONS(4055), 1, + anon_sym_RPAREN, + STATE(1606), 1, aux_sym_macro_definition_repeat1, - STATE(2158), 1, + STATE(2194), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2451), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55854] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3952), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55868] = 8, - ACTIONS(3979), 1, + [56596] = 8, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(4035), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(4037), 1, anon_sym_LBRACK, - ACTIONS(4015), 1, + ACTIONS(4057), 1, anon_sym_RPAREN, - STATE(1568), 1, + STATE(1606), 1, aux_sym_macro_definition_repeat1, - STATE(2299), 1, + STATE(2308), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2451), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55894] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3952), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55908] = 3, - ACTIONS(4017), 1, - anon_sym_trait, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55924] = 7, + [56622] = 7, ACTIONS(820), 1, anon_sym_DOT_DOT, - ACTIONS(3915), 1, + ACTIONS(4011), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(4017), 1, anon_sym_ref, - ACTIONS(3923), 1, - sym_mutable_specifier, ACTIONS(4019), 1, + sym_mutable_specifier, + ACTIONS(4059), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2287), 2, + STATE(2359), 2, sym_field_pattern, sym_remaining_field_pattern, - [55948] = 8, - ACTIONS(3824), 1, + [56646] = 8, + ACTIONS(3846), 1, anon_sym_LPAREN, - ACTIONS(3826), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4021), 1, + ACTIONS(3856), 1, + anon_sym_LBRACE, + ACTIONS(4061), 1, anon_sym_SEMI, - STATE(303), 1, + STATE(921), 1, sym_field_declaration_list, - STATE(1986), 1, + STATE(2151), 1, sym_ordered_field_declaration_list, - STATE(2249), 1, + STATE(2197), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55974] = 8, - ACTIONS(3979), 1, - anon_sym_LPAREN, - ACTIONS(3981), 1, - anon_sym_LBRACE, - ACTIONS(3985), 1, - anon_sym_LBRACK, - ACTIONS(4023), 1, - anon_sym_RPAREN, - STATE(1568), 1, - aux_sym_macro_definition_repeat1, - STATE(2281), 1, - sym_macro_rule, - STATE(2422), 1, - sym_token_tree_pattern, + [56672] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56000] = 8, - ACTIONS(3590), 1, + ACTIONS(4063), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56686] = 8, + ACTIONS(3640), 1, anon_sym_COLON_COLON, - ACTIONS(4025), 1, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(4027), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4031), 1, + ACTIONS(4071), 1, anon_sym_RBRACK, - ACTIONS(4033), 1, + ACTIONS(4073), 1, anon_sym_EQ, - STATE(2410), 1, + STATE(2527), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56026] = 3, - ACTIONS(4035), 1, - sym_identifier, + [56712] = 8, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, + anon_sym_LBRACE, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4075), 1, + anon_sym_RBRACK, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4079), 1, + anon_sym_COLON_COLON, + STATE(2530), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3834), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56042] = 8, - ACTIONS(3979), 1, + [56738] = 8, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(4035), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, - anon_sym_LBRACK, ACTIONS(4037), 1, + anon_sym_LBRACK, + ACTIONS(4081), 1, anon_sym_RBRACE, - STATE(1568), 1, + STATE(1606), 1, aux_sym_macro_definition_repeat1, - STATE(2165), 1, + STATE(2180), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2451), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56068] = 8, - ACTIONS(4025), 1, + [56764] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4083), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56778] = 8, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4027), 1, + ACTIONS(4035), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(4037), 1, anon_sym_LBRACK, - ACTIONS(4039), 1, - anon_sym_RBRACK, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4043), 1, - anon_sym_COLON_COLON, - STATE(2412), 1, - sym_delim_token_tree, + ACTIONS(4085), 1, + anon_sym_RBRACE, + STATE(1606), 1, + aux_sym_macro_definition_repeat1, + STATE(2182), 1, + sym_macro_rule, + STATE(2451), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56094] = 8, - ACTIONS(4025), 1, + [56804] = 8, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(4027), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(4039), 1, + ACTIONS(4075), 1, anon_sym_RBRACK, - ACTIONS(4041), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4045), 1, + ACTIONS(4087), 1, anon_sym_COLON_COLON, - STATE(2412), 1, + STATE(2530), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56120] = 8, - ACTIONS(3824), 1, + [56830] = 8, + ACTIONS(3846), 1, anon_sym_LPAREN, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3862), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4047), 1, - anon_sym_SEMI, - STATE(894), 1, - sym_field_declaration_list, - STATE(2118), 1, - sym_ordered_field_declaration_list, - STATE(2180), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56146] = 8, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3828), 1, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3862), 1, - anon_sym_LBRACE, - ACTIONS(4049), 1, + ACTIONS(4089), 1, anon_sym_SEMI, - STATE(892), 1, + STATE(389), 1, sym_field_declaration_list, - STATE(2083), 1, + STATE(2057), 1, sym_ordered_field_declaration_list, - STATE(2198), 1, + STATE(2312), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56172] = 8, - ACTIONS(4025), 1, - anon_sym_LPAREN, - ACTIONS(4027), 1, - anon_sym_LBRACE, - ACTIONS(4029), 1, - anon_sym_LBRACK, - ACTIONS(4039), 1, - anon_sym_RBRACK, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4051), 1, - anon_sym_COLON_COLON, - STATE(2412), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56198] = 3, - ACTIONS(4053), 1, + [56856] = 3, + ACTIONS(4091), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3834), 6, + ACTIONS(3870), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56214] = 7, + [56872] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3960), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56886] = 7, ACTIONS(820), 1, anon_sym_DOT_DOT, - ACTIONS(3915), 1, + ACTIONS(4011), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(4017), 1, anon_sym_ref, - ACTIONS(3923), 1, + ACTIONS(4019), 1, sym_mutable_specifier, - ACTIONS(4055), 1, + ACTIONS(4093), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2287), 2, + STATE(2359), 2, sym_field_pattern, sym_remaining_field_pattern, - [56238] = 2, + [56910] = 7, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(4011), 1, + sym_identifier, + ACTIONS(4017), 1, + anon_sym_ref, + ACTIONS(4019), 1, + sym_mutable_specifier, + ACTIONS(4095), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3952), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56252] = 3, - ACTIONS(4057), 1, - sym_identifier, + STATE(2359), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56934] = 3, + ACTIONS(4097), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3834), 6, + ACTIONS(2684), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56268] = 8, - ACTIONS(3979), 1, + [56950] = 3, + ACTIONS(3606), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2684), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56966] = 8, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(4035), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(4037), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, + ACTIONS(4099), 1, anon_sym_RBRACE, STATE(1606), 1, aux_sym_macro_definition_repeat1, - STATE(2308), 1, + STATE(2190), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2451), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56294] = 7, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3915), 1, - sym_identifier, - ACTIONS(3921), 1, - anon_sym_ref, - ACTIONS(3923), 1, - sym_mutable_specifier, - ACTIONS(4061), 1, + [56992] = 8, + ACTIONS(4031), 1, + anon_sym_LPAREN, + ACTIONS(4035), 1, + anon_sym_LBRACE, + ACTIONS(4037), 1, + anon_sym_LBRACK, + ACTIONS(4101), 1, anon_sym_RBRACE, + STATE(1646), 1, + aux_sym_macro_definition_repeat1, + STATE(2230), 1, + sym_macro_rule, + STATE(2451), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2287), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56318] = 6, - ACTIONS(3824), 1, + [57018] = 6, + ACTIONS(3846), 1, anon_sym_LPAREN, - ACTIONS(3862), 1, + ACTIONS(3856), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4105), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4063), 2, + ACTIONS(4103), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1955), 2, + STATE(2162), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [56340] = 7, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3915), 1, - sym_identifier, - ACTIONS(3921), 1, - anon_sym_ref, - ACTIONS(3923), 1, - sym_mutable_specifier, - ACTIONS(4067), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2287), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56364] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3952), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56378] = 3, - ACTIONS(4069), 1, - anon_sym_trait, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56394] = 8, - ACTIONS(3979), 1, + [57040] = 8, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(4035), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(4037), 1, anon_sym_LBRACK, - ACTIONS(4071), 1, - anon_sym_RBRACE, - STATE(1596), 1, + ACTIONS(4107), 1, + anon_sym_RPAREN, + STATE(1628), 1, aux_sym_macro_definition_repeat1, - STATE(2204), 1, + STATE(2224), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2451), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56420] = 3, - ACTIONS(3534), 1, - anon_sym_COLON_COLON, + [57066] = 3, + ACTIONS(4109), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(2684), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56436] = 8, - ACTIONS(3979), 1, + [57082] = 8, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(4035), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(4037), 1, anon_sym_LBRACK, - ACTIONS(4073), 1, - anon_sym_RPAREN, - STATE(1613), 1, + ACTIONS(4111), 1, + anon_sym_RBRACE, + STATE(1627), 1, aux_sym_macro_definition_repeat1, - STATE(2314), 1, + STATE(2220), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2451), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56462] = 8, - ACTIONS(3979), 1, + [57108] = 8, + ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(4035), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(4037), 1, anon_sym_LBRACK, - ACTIONS(4075), 1, - anon_sym_RBRACE, - STATE(1621), 1, + ACTIONS(4113), 1, + anon_sym_RPAREN, + STATE(1620), 1, aux_sym_macro_definition_repeat1, - STATE(2206), 1, + STATE(2307), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2451), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56488] = 8, - ACTIONS(3979), 1, + [57134] = 6, + ACTIONS(3846), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(3856), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_RBRACE, - STATE(1611), 1, - aux_sym_macro_definition_repeat1, - STATE(2317), 1, - sym_macro_rule, - STATE(2422), 1, - sym_token_tree_pattern, + ACTIONS(4117), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56514] = 7, - ACTIONS(3826), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LT, - STATE(386), 1, + ACTIONS(4115), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2045), 2, sym_field_declaration_list, - STATE(1858), 1, - sym_type_parameters, - STATE(2250), 1, - sym_where_clause, + sym_ordered_field_declaration_list, + [57156] = 7, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(4011), 1, + sym_identifier, + ACTIONS(4017), 1, + anon_sym_ref, + ACTIONS(4019), 1, + sym_mutable_specifier, + ACTIONS(4119), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56537] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4079), 1, - anon_sym_SEMI, - ACTIONS(4081), 1, - anon_sym_PLUS, - STATE(407), 1, - sym_declaration_list, - STATE(1953), 1, - sym_where_clause, + STATE(2359), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [57180] = 3, + ACTIONS(4121), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56560] = 7, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(4083), 1, + ACTIONS(3870), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [57196] = 8, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, anon_sym_LBRACE, - STATE(492), 1, - sym_enum_variant_list, - STATE(1812), 1, - sym_type_parameters, - STATE(2312), 1, - sym_where_clause, + ACTIONS(4069), 1, + anon_sym_LBRACK, + ACTIONS(4075), 1, + anon_sym_RBRACK, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_COLON_COLON, + STATE(2530), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56583] = 7, - ACTIONS(3826), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [57222] = 8, + ACTIONS(3846), 1, + anon_sym_LPAREN, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LT, - STATE(374), 1, + ACTIONS(3856), 1, + anon_sym_LBRACE, + ACTIONS(4125), 1, + anon_sym_SEMI, + STATE(951), 1, sym_field_declaration_list, - STATE(1830), 1, - sym_type_parameters, - STATE(2303), 1, + STATE(2123), 1, + sym_ordered_field_declaration_list, + STATE(2232), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56606] = 7, - ACTIONS(3828), 1, + [57248] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4085), 1, - anon_sym_SEMI, - ACTIONS(4087), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(424), 1, - sym_block, - STATE(1922), 1, + ACTIONS(4127), 1, + anon_sym_SEMI, + ACTIONS(4129), 1, + anon_sym_PLUS, + STATE(865), 1, + sym_declaration_list, + STATE(2144), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56629] = 7, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4089), 1, - anon_sym_SEMI, - ACTIONS(4091), 1, + [57271] = 7, + ACTIONS(3347), 1, anon_sym_LBRACE, - STATE(930), 1, - sym_block, - STATE(2051), 1, - sym_where_clause, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(4131), 1, + sym_identifier, + ACTIONS(4133), 1, + anon_sym_STAR, + STATE(2082), 1, + sym_use_list, + STATE(2478), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56652] = 4, - ACTIONS(3556), 1, + [57294] = 4, + ACTIONS(3584), 1, anon_sym_COLON_COLON, - ACTIONS(3820), 1, + ACTIONS(3900), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2622), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56669] = 4, - ACTIONS(4093), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3698), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2742), 3, + [57311] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4135), 1, anon_sym_SEMI, - anon_sym_PLUS, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(4139), 1, anon_sym_DASH_GT, - [56686] = 4, - ACTIONS(4096), 1, - anon_sym_RBRACK, + STATE(1085), 1, + sym_block, + STATE(2090), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3630), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2702), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [56703] = 7, - ACTIONS(3828), 1, + [57334] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4087), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - anon_sym_SEMI, - STATE(321), 1, - sym_block, - STATE(1996), 1, + ACTIONS(3952), 1, + anon_sym_COLON, + STATE(1082), 1, + sym_declaration_list, + STATE(1910), 1, + sym_trait_bounds, + STATE(2273), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56726] = 7, - ACTIONS(3828), 1, + [57357] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4087), 1, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, + ACTIONS(4141), 1, anon_sym_SEMI, - STATE(357), 1, + ACTIONS(4143), 1, + anon_sym_DASH_GT, + STATE(1066), 1, sym_block, - STATE(2110), 1, + STATE(2094), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56749] = 5, - ACTIONS(4105), 1, - anon_sym_COLON, - ACTIONS(4107), 1, + [57380] = 4, + ACTIONS(3584), 1, anon_sym_COLON_COLON, + ACTIONS(3860), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4103), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56768] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3698), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2742), 4, - anon_sym_RPAREN, + ACTIONS(2622), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [56783] = 7, - ACTIONS(3305), 1, + anon_sym_where, + [57397] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4109), 1, - sym_identifier, - ACTIONS(4111), 1, - anon_sym_STAR, - STATE(2073), 1, - sym_use_list, - STATE(2358), 1, - sym_type_arguments, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4145), 1, + anon_sym_SEMI, + STATE(1047), 1, + sym_declaration_list, + STATE(2095), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56806] = 7, - ACTIONS(3305), 1, + [57420] = 7, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4109), 1, - sym_identifier, - ACTIONS(4111), 1, - anon_sym_STAR, - STATE(2073), 1, - sym_use_list, - STATE(2355), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56829] = 7, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(4113), 1, - anon_sym_COMMA, - ACTIONS(4115), 1, - anon_sym_GT, - STATE(2018), 1, - aux_sym_type_parameters_repeat1, - STATE(2019), 1, - sym_trait_bounds, - STATE(2109), 1, - aux_sym_for_lifetimes_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56852] = 7, - ACTIONS(3538), 1, - anon_sym_EQ, - ACTIONS(3540), 1, - anon_sym_COMMA, - ACTIONS(3542), 1, - anon_sym_GT, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(2015), 1, - sym_trait_bounds, - STATE(2017), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(290), 1, + sym_field_declaration_list, + STATE(1863), 1, + sym_type_parameters, + STATE(2231), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56875] = 7, - ACTIONS(3828), 1, + [57443] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4087), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(4117), 1, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4147), 1, anon_sym_SEMI, - ACTIONS(4119), 1, - anon_sym_DASH_GT, - STATE(359), 1, - sym_block, - STATE(1970), 1, + STATE(1038), 1, + sym_declaration_list, + STATE(2096), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56898] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [57466] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4121), 1, + ACTIONS(4149), 1, anon_sym_SEMI, - STATE(443), 1, + STATE(433), 1, sym_declaration_list, - STATE(2098), 1, + STATE(2001), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56921] = 3, + [57489] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4151), 1, + anon_sym_SEMI, + STATE(431), 1, + sym_declaration_list, + STATE(2003), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3630), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2702), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [56936] = 7, - ACTIONS(3828), 1, + [57512] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(4123), 1, + ACTIONS(4153), 1, anon_sym_SEMI, - STATE(852), 1, + ACTIONS(4155), 1, + anon_sym_LBRACE, + STATE(413), 1, sym_block, - STATE(1939), 1, + STATE(1953), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56959] = 7, - ACTIONS(3828), 1, + [57535] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4091), 1, + ACTIONS(4155), 1, anon_sym_LBRACE, - ACTIONS(4125), 1, + ACTIONS(4157), 1, anon_sym_SEMI, - ACTIONS(4127), 1, + ACTIONS(4159), 1, anon_sym_DASH_GT, - STATE(873), 1, + STATE(438), 1, sym_block, - STATE(2105), 1, + STATE(1969), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56982] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [57558] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(868), 1, - sym_declaration_list, - STATE(1824), 1, - sym_trait_bounds, - STATE(2188), 1, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(4161), 1, + anon_sym_LBRACE, + STATE(307), 1, + sym_enum_variant_list, + STATE(1856), 1, + sym_type_parameters, + STATE(2247), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57005] = 5, - ACTIONS(4131), 1, - anon_sym_COLON, - ACTIONS(4133), 1, - anon_sym_COLON_COLON, + [57581] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4163), 1, + anon_sym_SEMI, + STATE(991), 1, + sym_declaration_list, + STATE(2101), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4129), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57024] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [57604] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4135), 1, + ACTIONS(4165), 1, anon_sym_SEMI, - STATE(944), 1, + STATE(989), 1, sym_declaration_list, - STATE(2046), 1, + STATE(2102), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57047] = 7, - ACTIONS(3806), 1, + [57627] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(4167), 1, + anon_sym_SEMI, + STATE(915), 1, + sym_block, + STATE(2061), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57650] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4129), 1, anon_sym_PLUS, ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(4169), 1, anon_sym_SEMI, - STATE(836), 1, - sym_declaration_list, - STATE(2113), 1, + STATE(968), 1, + sym_block, + STATE(2063), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57070] = 4, - ACTIONS(4133), 1, - anon_sym_COLON_COLON, + [57673] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2614), 3, - anon_sym_RPAREN, + ACTIONS(2722), 2, anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3706), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4171), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [57087] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [57690] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4139), 1, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(4174), 1, anon_sym_SEMI, - STATE(946), 1, - sym_declaration_list, - STATE(2044), 1, + STATE(976), 1, + sym_block, + STATE(2104), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57110] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4141), 1, - anon_sym_SEMI, - STATE(453), 1, - sym_declaration_list, - STATE(2074), 1, - sym_where_clause, + [57713] = 4, + ACTIONS(4176), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57133] = 6, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3915), 1, - sym_identifier, - ACTIONS(3921), 1, - anon_sym_ref, - ACTIONS(3923), 1, - sym_mutable_specifier, + ACTIONS(3726), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2742), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [57730] = 7, + ACTIONS(3952), 1, + anon_sym_COLON, + ACTIONS(4179), 1, + anon_sym_COMMA, + ACTIONS(4181), 1, + anon_sym_GT, + STATE(2007), 1, + aux_sym_type_parameters_repeat1, + STATE(2008), 1, + sym_trait_bounds, + STATE(2145), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2287), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [57154] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [57753] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4143), 1, - anon_sym_SEMI, - STATE(976), 1, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(3952), 1, + anon_sym_COLON, + STATE(477), 1, sym_declaration_list, - STATE(2023), 1, + STATE(1848), 1, + sym_trait_bounds, + STATE(2302), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57177] = 7, - ACTIONS(3828), 1, + [57776] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4155), 1, anon_sym_LBRACE, - ACTIONS(4145), 1, + ACTIONS(4183), 1, anon_sym_SEMI, - STATE(899), 1, + ACTIONS(4185), 1, + anon_sym_DASH_GT, + STATE(375), 1, sym_block, - STATE(1952), 1, + STATE(2065), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57200] = 4, - ACTIONS(4147), 1, - anon_sym_COLON_COLON, + [57799] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4187), 1, + anon_sym_SEMI, + STATE(349), 1, + sym_declaration_list, + STATE(2100), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2614), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [57217] = 7, - ACTIONS(3828), 1, + [57822] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4087), 1, + ACTIONS(4155), 1, anon_sym_LBRACE, - ACTIONS(4149), 1, + ACTIONS(4189), 1, anon_sym_SEMI, - ACTIONS(4151), 1, + ACTIONS(4191), 1, anon_sym_DASH_GT, - STATE(445), 1, + STATE(453), 1, sym_block, - STATE(2157), 1, + STATE(1961), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57240] = 4, - ACTIONS(3556), 1, + [57845] = 4, + ACTIONS(3584), 1, anon_sym_COLON_COLON, - ACTIONS(3800), 1, + ACTIONS(3882), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2622), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57257] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [57862] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4153), 1, - anon_sym_SEMI, - STATE(854), 1, - sym_declaration_list, - STATE(2014), 1, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(4193), 1, + anon_sym_LBRACE, + STATE(1116), 1, + sym_enum_variant_list, + STATE(1833), 1, + sym_type_parameters, + STATE(2343), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57280] = 4, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, - ACTIONS(3802), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57297] = 4, - ACTIONS(4155), 1, + [57885] = 6, + ACTIONS(3233), 1, anon_sym_COLON_COLON, + ACTIONS(4195), 1, + anon_sym_COMMA, + ACTIONS(4197), 1, + anon_sym_GT, + STATE(2007), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2614), 3, - anon_sym_RPAREN, + ACTIONS(2622), 2, anon_sym_PLUS, - anon_sym_COMMA, - [57314] = 5, - ACTIONS(4131), 1, - anon_sym_COLON, - ACTIONS(4155), 1, - anon_sym_COLON_COLON, + anon_sym_as, + [57906] = 4, + ACTIONS(4171), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4129), 2, - anon_sym_RPAREN, + ACTIONS(3706), 2, anon_sym_COMMA, - [57333] = 7, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, + anon_sym_PIPE, + ACTIONS(2722), 3, + anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(4091), 1, + anon_sym_DASH_GT, + [57923] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4155), 1, anon_sym_LBRACE, - ACTIONS(4157), 1, + ACTIONS(4199), 1, anon_sym_SEMI, - STATE(919), 1, + ACTIONS(4201), 1, + anon_sym_DASH_GT, + STATE(501), 1, sym_block, - STATE(1960), 1, + STATE(1972), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57356] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [57946] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4159), 1, + ACTIONS(4203), 1, anon_sym_SEMI, - STATE(437), 1, + STATE(316), 1, sym_declaration_list, - STATE(2055), 1, + STATE(2132), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57379] = 7, - ACTIONS(3828), 1, + [57969] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4087), 1, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4155), 1, anon_sym_LBRACE, - ACTIONS(4161), 1, + ACTIONS(4205), 1, anon_sym_SEMI, - ACTIONS(4163), 1, - anon_sym_DASH_GT, - STATE(269), 1, + STATE(427), 1, sym_block, - STATE(2010), 1, + STATE(2027), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57402] = 7, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(4165), 1, + [57992] = 4, + ACTIONS(3584), 1, + anon_sym_COLON_COLON, + ACTIONS(3872), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2622), 4, anon_sym_SEMI, - ACTIONS(4167), 1, - anon_sym_DASH_GT, - STATE(982), 1, - sym_block, - STATE(2013), 1, - sym_where_clause, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [58009] = 7, + ACTIONS(2501), 1, + anon_sym_PLUS, + ACTIONS(3952), 1, + anon_sym_COLON, + ACTIONS(4195), 1, + anon_sym_COMMA, + ACTIONS(4197), 1, + anon_sym_GT, + STATE(2007), 1, + aux_sym_type_parameters_repeat1, + STATE(2008), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58032] = 7, + ACTIONS(3618), 1, + anon_sym_EQ, + ACTIONS(3620), 1, + anon_sym_COMMA, + ACTIONS(3622), 1, + anon_sym_GT, + ACTIONS(3952), 1, + anon_sym_COLON, + STATE(1996), 1, + sym_trait_bounds, + STATE(1997), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57425] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [58055] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4169), 1, - anon_sym_SEMI, - STATE(814), 1, - sym_declaration_list, - STATE(2124), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57448] = 7, - ACTIONS(3806), 1, + ACTIONS(3914), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4171), 1, + ACTIONS(4207), 1, anon_sym_SEMI, - STATE(815), 1, + STATE(330), 1, sym_declaration_list, - STATE(2131), 1, + STATE(2067), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57471] = 6, - ACTIONS(3193), 1, + [58078] = 4, + ACTIONS(3584), 1, anon_sym_COLON_COLON, - ACTIONS(4173), 1, - anon_sym_COMMA, - ACTIONS(4175), 1, - anon_sym_GT, - STATE(2018), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3918), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, - anon_sym_PLUS, - anon_sym_as, - [57492] = 7, - ACTIONS(3796), 1, + ACTIONS(2622), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3828), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3902), 1, + [58095] = 5, + ACTIONS(4211), 1, anon_sym_COLON, - STATE(282), 1, + ACTIONS(4213), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4209), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58114] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4215), 1, + anon_sym_SEMI, + STATE(1071), 1, sym_declaration_list, - STATE(1799), 1, - sym_trait_bounds, - STATE(2208), 1, + STATE(2068), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57515] = 7, - ACTIONS(3828), 1, + [58137] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4087), 1, + ACTIONS(4155), 1, anon_sym_LBRACE, - ACTIONS(4177), 1, + ACTIONS(4217), 1, anon_sym_SEMI, - STATE(397), 1, + STATE(482), 1, sym_block, - STATE(1969), 1, + STATE(1962), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57538] = 7, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3830), 1, + [58160] = 7, + ACTIONS(3952), 1, + anon_sym_COLON, + ACTIONS(3954), 1, anon_sym_LT, - ACTIONS(4179), 1, - anon_sym_LBRACE, - STATE(1006), 1, - sym_enum_variant_list, - STATE(1836), 1, + ACTIONS(4219), 1, + anon_sym_SEMI, + ACTIONS(4221), 1, + anon_sym_EQ, + STATE(1842), 1, sym_type_parameters, - STATE(2230), 1, - sym_where_clause, + STATE(2517), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57561] = 7, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4087), 1, - anon_sym_LBRACE, - ACTIONS(4181), 1, - anon_sym_SEMI, - STATE(473), 1, - sym_block, - STATE(1946), 1, - sym_where_clause, + [58183] = 4, + ACTIONS(3584), 1, + anon_sym_COLON_COLON, + ACTIONS(3864), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57584] = 7, - ACTIONS(3806), 1, + ACTIONS(2622), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, anon_sym_PLUS, - ACTIONS(4183), 1, - anon_sym_SEMI, - STATE(1038), 1, - sym_declaration_list, - STATE(2036), 1, + anon_sym_where, + [58200] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(3856), 1, + anon_sym_LBRACE, + STATE(1050), 1, + sym_field_declaration_list, + STATE(1843), 1, + sym_type_parameters, + STATE(2290), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57607] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [58223] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3902), 1, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(3952), 1, anon_sym_COLON, - STATE(418), 1, + STATE(345), 1, sym_declaration_list, - STATE(1893), 1, + STATE(1832), 1, sym_trait_bounds, - STATE(2325), 1, + STATE(2342), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57630] = 7, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4087), 1, - anon_sym_LBRACE, - ACTIONS(4185), 1, - anon_sym_SEMI, - STATE(462), 1, - sym_block, - STATE(2140), 1, - sym_where_clause, + [58246] = 6, + ACTIONS(4123), 1, + anon_sym_COLON_COLON, + ACTIONS(4223), 1, + anon_sym_LPAREN, + ACTIONS(4227), 1, + anon_sym_EQ, + STATE(2328), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57653] = 7, - ACTIONS(3828), 1, + ACTIONS(4225), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58267] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4087), 1, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(4187), 1, + ACTIONS(4229), 1, anon_sym_SEMI, - ACTIONS(4189), 1, + ACTIONS(4231), 1, anon_sym_DASH_GT, - STATE(271), 1, + STATE(939), 1, sym_block, - STATE(1904), 1, + STATE(2127), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57676] = 7, - ACTIONS(3828), 1, + [58290] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4087), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(4191), 1, - anon_sym_SEMI, - ACTIONS(4193), 1, - anon_sym_DASH_GT, - STATE(322), 1, - sym_block, - STATE(1987), 1, + ACTIONS(3952), 1, + anon_sym_COLON, + STATE(933), 1, + sym_declaration_list, + STATE(1906), 1, + sym_trait_bounds, + STATE(2222), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57699] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4195), 1, - anon_sym_SEMI, - STATE(425), 1, - sym_declaration_list, - STATE(2084), 1, - sym_where_clause, + [58313] = 6, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(4011), 1, + sym_identifier, + ACTIONS(4017), 1, + anon_sym_ref, + ACTIONS(4019), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57722] = 4, - ACTIONS(3556), 1, + STATE(2359), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [58334] = 5, + ACTIONS(4235), 1, + anon_sym_COLON, + ACTIONS(4237), 1, anon_sym_COLON_COLON, - ACTIONS(3878), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57739] = 7, - ACTIONS(3828), 1, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4233), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58353] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4091), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(4197), 1, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4239), 1, anon_sym_SEMI, - ACTIONS(4199), 1, - anon_sym_DASH_GT, - STATE(842), 1, - sym_block, - STATE(2152), 1, + STATE(883), 1, + sym_declaration_list, + STATE(2134), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57762] = 7, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(3904), 1, - anon_sym_LT, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(4203), 1, - anon_sym_EQ, - STATE(1834), 1, - sym_type_parameters, - STATE(2536), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57785] = 7, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(3862), 1, - anon_sym_LBRACE, - STATE(1017), 1, - sym_field_declaration_list, - STATE(1845), 1, - sym_type_parameters, - STATE(2219), 1, - sym_where_clause, + [58376] = 4, + ACTIONS(4237), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57808] = 7, - ACTIONS(2476), 1, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2622), 3, + anon_sym_RPAREN, anon_sym_PLUS, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(4173), 1, anon_sym_COMMA, - ACTIONS(4175), 1, - anon_sym_GT, - STATE(2018), 1, - aux_sym_type_parameters_repeat1, - STATE(2019), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57831] = 6, - ACTIONS(4051), 1, + [58393] = 6, + ACTIONS(4087), 1, anon_sym_COLON_COLON, - ACTIONS(4205), 1, + ACTIONS(4223), 1, anon_sym_LPAREN, - ACTIONS(4209), 1, + ACTIONS(4227), 1, anon_sym_EQ, - STATE(2213), 1, + STATE(2328), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4207), 2, + ACTIONS(4225), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57852] = 4, + [58414] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4241), 1, + anon_sym_SEMI, + STATE(853), 1, + sym_declaration_list, + STATE(2142), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3630), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4096), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57869] = 6, - ACTIONS(4045), 1, + [58437] = 6, + ACTIONS(4079), 1, anon_sym_COLON_COLON, - ACTIONS(4205), 1, + ACTIONS(4223), 1, anon_sym_LPAREN, - ACTIONS(4209), 1, + ACTIONS(4227), 1, anon_sym_EQ, - STATE(2213), 1, + STATE(2328), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4207), 2, + ACTIONS(4225), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57890] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [58458] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4211), 1, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(4243), 1, anon_sym_SEMI, - STATE(349), 1, - sym_declaration_list, - STATE(2040), 1, + STATE(860), 1, + sym_block, + STATE(2059), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57913] = 7, - ACTIONS(3828), 1, + [58481] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4087), 1, + ACTIONS(4155), 1, anon_sym_LBRACE, - ACTIONS(4213), 1, + ACTIONS(4245), 1, anon_sym_SEMI, - ACTIONS(4215), 1, + ACTIONS(4247), 1, anon_sym_DASH_GT, - STATE(488), 1, + STATE(274), 1, sym_block, - STATE(2108), 1, + STATE(2171), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57936] = 6, - ACTIONS(4043), 1, + [58504] = 4, + ACTIONS(4249), 1, anon_sym_COLON_COLON, - ACTIONS(4205), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2622), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [58521] = 6, + ACTIONS(3640), 1, + anon_sym_COLON_COLON, + ACTIONS(4223), 1, anon_sym_LPAREN, - ACTIONS(4209), 1, + ACTIONS(4253), 1, anon_sym_EQ, - STATE(2213), 1, + STATE(2294), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4207), 2, + ACTIONS(4251), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57957] = 7, - ACTIONS(3538), 1, - anon_sym_EQ, - ACTIONS(3902), 1, + [58542] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, + anon_sym_SEMI, + ACTIONS(4257), 1, + anon_sym_DASH_GT, + STATE(1126), 1, + sym_block, + STATE(2066), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58565] = 7, + ACTIONS(3952), 1, anon_sym_COLON, - ACTIONS(4217), 1, - anon_sym_COMMA, - ACTIONS(4219), 1, - anon_sym_GT, - STATE(2015), 1, + ACTIONS(3954), 1, + anon_sym_LT, + ACTIONS(4259), 1, + anon_sym_SEMI, + ACTIONS(4261), 1, + anon_sym_EQ, + STATE(1822), 1, + sym_type_parameters, + STATE(2402), 1, sym_trait_bounds, - STATE(2099), 1, - aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57980] = 4, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, - ACTIONS(3866), 1, - anon_sym_for, + [58588] = 7, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(387), 1, + sym_field_declaration_list, + STATE(1823), 1, + sym_type_parameters, + STATE(2339), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + [58611] = 7, + ACTIONS(3850), 1, anon_sym_where, - [57997] = 7, - ACTIONS(3796), 1, + ACTIONS(3914), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4221), 1, + ACTIONS(4263), 1, anon_sym_SEMI, - STATE(471), 1, + STATE(306), 1, sym_declaration_list, - STATE(1905), 1, + STATE(2167), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58020] = 7, - ACTIONS(3828), 1, + [58634] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4091), 1, + ACTIONS(3914), 1, anon_sym_LBRACE, - ACTIONS(4223), 1, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4265), 1, anon_sym_SEMI, - ACTIONS(4225), 1, - anon_sym_DASH_GT, - STATE(970), 1, - sym_block, - STATE(1963), 1, + STATE(303), 1, + sym_declaration_list, + STATE(1919), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58043] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, + [58657] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3706), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2722), 4, + anon_sym_RPAREN, anon_sym_PLUS, - ACTIONS(4227), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + [58672] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3726), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2742), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [58687] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, anon_sym_SEMI, - STATE(486), 1, - sym_declaration_list, - STATE(1906), 1, + ACTIONS(4269), 1, + anon_sym_DASH_GT, + STATE(980), 1, + sym_block, + STATE(2122), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58066] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [58710] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(1039), 1, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4271), 1, + anon_sym_SEMI, + STATE(351), 1, sym_declaration_list, - STATE(1844), 1, - sym_trait_bounds, - STATE(2237), 1, + STATE(2093), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58089] = 7, - ACTIONS(3828), 1, + [58733] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4091), 1, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(4229), 1, + ACTIONS(4273), 1, anon_sym_SEMI, - ACTIONS(4231), 1, + ACTIONS(4275), 1, anon_sym_DASH_GT, - STATE(1041), 1, + STATE(876), 1, sym_block, - STATE(2003), 1, + STATE(2154), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58112] = 6, - ACTIONS(3590), 1, + [58756] = 4, + ACTIONS(3584), 1, anon_sym_COLON_COLON, - ACTIONS(4205), 1, - anon_sym_LPAREN, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2215), 1, - sym_meta_arguments, + ACTIONS(3862), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4233), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58133] = 7, - ACTIONS(3828), 1, + ACTIONS(2622), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4081), 1, + [58773] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(4161), 1, + anon_sym_LBRACE, + STATE(276), 1, + sym_enum_variant_list, + STATE(1901), 1, + sym_type_parameters, + STATE(2319), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58796] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(4237), 1, + ACTIONS(4277), 1, anon_sym_SEMI, - STATE(986), 1, + STATE(1159), 1, sym_block, - STATE(1972), 1, + STATE(2073), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58156] = 7, - ACTIONS(3806), 1, + [58819] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4279), 1, + anon_sym_SEMI, + STATE(954), 1, + sym_declaration_list, + STATE(2136), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58842] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4239), 1, + ACTIONS(4281), 1, anon_sym_SEMI, - STATE(1000), 1, + STATE(470), 1, sym_declaration_list, - STATE(1977), 1, + STATE(1982), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58179] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [58865] = 7, + ACTIONS(3618), 1, + anon_sym_EQ, + ACTIONS(3952), 1, + anon_sym_COLON, + ACTIONS(4283), 1, + anon_sym_COMMA, + ACTIONS(4285), 1, + anon_sym_GT, + STATE(1996), 1, + sym_trait_bounds, + STATE(2131), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58888] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4241), 1, - anon_sym_SEMI, - STATE(301), 1, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(3952), 1, + anon_sym_COLON, + STATE(369), 1, sym_declaration_list, - STATE(1907), 1, + STATE(1911), 1, + sym_trait_bounds, + STATE(2276), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58202] = 7, - ACTIONS(3828), 1, + [58911] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(3862), 1, + ACTIONS(4155), 1, anon_sym_LBRACE, - STATE(864), 1, - sym_field_declaration_list, - STATE(1855), 1, - sym_type_parameters, - STATE(2161), 1, + ACTIONS(4287), 1, + anon_sym_SEMI, + ACTIONS(4289), 1, + anon_sym_DASH_GT, + STATE(280), 1, + sym_block, + STATE(1926), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58225] = 7, - ACTIONS(3828), 1, + [58934] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(4179), 1, + ACTIONS(3914), 1, anon_sym_LBRACE, - STATE(872), 1, - sym_enum_variant_list, - STATE(1842), 1, - sym_type_parameters, - STATE(2170), 1, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4291), 1, + anon_sym_SEMI, + STATE(410), 1, + sym_declaration_list, + STATE(2011), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58248] = 4, - ACTIONS(3556), 1, + [58957] = 4, + ACTIONS(3584), 1, anon_sym_COLON_COLON, - ACTIONS(3886), 1, + ACTIONS(3890), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2622), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58265] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [58974] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(272), 1, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4293), 1, + anon_sym_SEMI, + STATE(304), 1, sym_declaration_list, - STATE(1839), 1, - sym_trait_bounds, - STATE(2275), 1, + STATE(2135), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58288] = 7, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4091), 1, + [58997] = 7, + ACTIONS(3347), 1, anon_sym_LBRACE, - ACTIONS(4243), 1, - anon_sym_SEMI, - ACTIONS(4245), 1, - anon_sym_DASH_GT, - STATE(950), 1, - sym_block, - STATE(2090), 1, - sym_where_clause, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(4131), 1, + sym_identifier, + ACTIONS(4133), 1, + anon_sym_STAR, + STATE(2082), 1, + sym_use_list, + STATE(2475), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58311] = 7, - ACTIONS(3828), 1, + [59020] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(4247), 1, + ACTIONS(4295), 1, anon_sym_SEMI, - STATE(1055), 1, + STATE(1102), 1, sym_block, - STATE(1983), 1, + STATE(2084), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58334] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [59043] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4249), 1, + ACTIONS(4297), 1, anon_sym_SEMI, - STATE(881), 1, + STATE(1150), 1, sym_declaration_list, - STATE(2127), 1, + STATE(2078), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58357] = 7, - ACTIONS(3828), 1, + [59066] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(4083), 1, + ACTIONS(3914), 1, anon_sym_LBRACE, - STATE(276), 1, - sym_enum_variant_list, - STATE(1866), 1, - sym_type_parameters, - STATE(2273), 1, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4299), 1, + anon_sym_SEMI, + STATE(460), 1, + sym_declaration_list, + STATE(1984), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58380] = 4, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, - ACTIONS(3856), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + [59089] = 7, + ACTIONS(3850), 1, anon_sym_where, - [58397] = 7, - ACTIONS(3806), 1, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4251), 1, + ACTIONS(4301), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(1144), 1, sym_declaration_list, - STATE(1980), 1, + STATE(2081), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58420] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [59112] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4253), 1, + ACTIONS(4155), 1, + anon_sym_LBRACE, + ACTIONS(4303), 1, anon_sym_SEMI, - STATE(296), 1, - sym_declaration_list, - STATE(2027), 1, + STATE(465), 1, + sym_block, + STATE(1981), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58443] = 7, - ACTIONS(3796), 1, + [59135] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(3856), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, + STATE(891), 1, + sym_field_declaration_list, + STATE(1885), 1, + sym_type_parameters, + STATE(2183), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59158] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4255), 1, + ACTIONS(4155), 1, + anon_sym_LBRACE, + ACTIONS(4305), 1, anon_sym_SEMI, - STATE(393), 1, - sym_declaration_list, - STATE(1965), 1, + STATE(398), 1, + sym_block, + STATE(1944), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58466] = 4, + [59181] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(4193), 1, + anon_sym_LBRACE, + STATE(899), 1, + sym_enum_variant_list, + STATE(1878), 1, + sym_type_parameters, + STATE(2185), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59204] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(2742), 2, anon_sym_PLUS, anon_sym_DASH_GT, - ACTIONS(3698), 2, + ACTIONS(3726), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4093), 2, + ACTIONS(4176), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58483] = 4, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, - ACTIONS(3890), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58500] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [59221] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4257), 1, + ACTIONS(4155), 1, + anon_sym_LBRACE, + ACTIONS(4307), 1, anon_sym_SEMI, - STATE(406), 1, - sym_declaration_list, - STATE(2079), 1, + STATE(291), 1, + sym_block, + STATE(1933), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58523] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [59244] = 5, + ACTIONS(4235), 1, + anon_sym_COLON, + ACTIONS(4309), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4233), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59263] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4259), 1, + ACTIONS(4311), 1, anon_sym_SEMI, - STATE(917), 1, + STATE(909), 1, sym_declaration_list, - STATE(2104), 1, + STATE(2160), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58546] = 7, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(3904), 1, - anon_sym_LT, - ACTIONS(4261), 1, - anon_sym_SEMI, - ACTIONS(4263), 1, - anon_sym_EQ, - STATE(1815), 1, - sym_type_parameters, - STATE(2496), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58569] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [59286] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3902), 1, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(3952), 1, anon_sym_COLON, - STATE(889), 1, + STATE(918), 1, sym_declaration_list, - STATE(1835), 1, + STATE(1875), 1, sym_trait_bounds, - STATE(2178), 1, + STATE(2195), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58592] = 2, + [59309] = 4, + ACTIONS(4309), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4265), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2622), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [58604] = 2, + [59326] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2925), 5, + ACTIONS(3111), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58616] = 5, - ACTIONS(3654), 1, - anon_sym_COLON, - ACTIONS(3656), 1, - anon_sym_BANG, - ACTIONS(3682), 1, + [59338] = 4, + ACTIONS(4237), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, + ACTIONS(3501), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58634] = 4, - ACTIONS(4267), 1, - anon_sym_RBRACK, + ACTIONS(4313), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59354] = 5, + ACTIONS(3571), 1, + anon_sym_COLON_COLON, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(3788), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3441), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [58650] = 4, - ACTIONS(4270), 1, - anon_sym_RBRACK, + ACTIONS(3573), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59372] = 4, + ACTIONS(4309), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2826), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3646), 2, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4209), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - [58666] = 2, + [59388] = 6, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3509), 1, + anon_sym_COLON_COLON, + STATE(1390), 1, + sym_type_arguments, + STATE(1395), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4273), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [58678] = 4, - ACTIONS(2614), 1, + [59408] = 4, + ACTIONS(2622), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, + ACTIONS(3489), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4267), 2, + ACTIONS(4315), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58694] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4275), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + [59424] = 5, + ACTIONS(4318), 1, + anon_sym_RPAREN, + ACTIONS(4321), 1, anon_sym_COMMA, - [58706] = 2, + STATE(2172), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3039), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3489), 2, anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58718] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3047), 5, + anon_sym_PIPE, + [59442] = 6, + ACTIONS(3702), 1, + anon_sym_PIPE, + ACTIONS(4324), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4326), 1, anon_sym_COLON, - anon_sym_where, + ACTIONS(4328), 1, anon_sym_EQ, - [58730] = 5, - ACTIONS(4277), 1, - anon_sym_RPAREN, - ACTIONS(4280), 1, - anon_sym_COMMA, - STATE(2146), 1, - aux_sym_parameters_repeat1, + ACTIONS(4330), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58748] = 5, - ACTIONS(786), 1, - anon_sym_RPAREN, - ACTIONS(4283), 1, - anon_sym_COMMA, - STATE(2056), 1, - aux_sym_parameters_repeat1, + [59462] = 4, + ACTIONS(4315), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, - anon_sym_COLON, + ACTIONS(2622), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3489), 2, + anon_sym_COMMA, anon_sym_PIPE, - [58766] = 4, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(4285), 1, - anon_sym_if, + [59478] = 6, + ACTIONS(2604), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3509), 1, + anon_sym_COLON_COLON, + STATE(819), 1, + sym_parameters, + STATE(1390), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(238), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [58782] = 5, - ACTIONS(790), 1, + [59498] = 6, + ACTIONS(4332), 1, anon_sym_RPAREN, - ACTIONS(4287), 1, + ACTIONS(4334), 1, + anon_sym_COLON, + ACTIONS(4336), 1, anon_sym_COMMA, - STATE(1924), 1, - aux_sym_parameters_repeat1, + ACTIONS(4338), 1, + anon_sym_PIPE, + STATE(2169), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58800] = 2, + [59518] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4289), 5, + ACTIONS(4340), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58812] = 4, - ACTIONS(4133), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4103), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58828] = 2, + [59530] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4291), 5, + ACTIONS(3131), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - [58840] = 6, - ACTIONS(4293), 1, - anon_sym_RPAREN, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(4297), 1, - anon_sym_COMMA, - ACTIONS(4299), 1, - anon_sym_PIPE, - STATE(2141), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58860] = 2, + [59542] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4301), 5, + ACTIONS(3127), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - [58872] = 5, - ACTIONS(3552), 1, - anon_sym_COLON_COLON, - ACTIONS(3656), 1, - anon_sym_BANG, - ACTIONS(4303), 1, + [59554] = 6, + ACTIONS(3952), 1, anon_sym_COLON, + ACTIONS(4342), 1, + anon_sym_COMMA, + ACTIONS(4344), 1, + anon_sym_GT, + STATE(2008), 1, + sym_trait_bounds, + STATE(2133), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58890] = 4, - ACTIONS(4133), 1, - anon_sym_COLON_COLON, + [59574] = 5, + ACTIONS(4346), 1, + anon_sym_RPAREN, + ACTIONS(4348), 1, + anon_sym_COMMA, + STATE(2159), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4305), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58906] = 2, + ACTIONS(3489), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59592] = 4, + ACTIONS(4352), 1, + anon_sym_as, + ACTIONS(4354), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4307), 5, + ACTIONS(4350), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [58918] = 2, + [59608] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4309), 5, + ACTIONS(3066), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - [58930] = 6, - ACTIONS(2572), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - STATE(911), 1, - sym_parameters, - STATE(1375), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58950] = 4, - ACTIONS(4155), 1, + [59620] = 4, + ACTIONS(4309), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(3501), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4103), 2, + ACTIONS(4313), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58966] = 6, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, + [59636] = 4, + ACTIONS(4352), 1, + anon_sym_as, + ACTIONS(4356), 1, anon_sym_COLON_COLON, - STATE(1375), 1, - sym_type_arguments, - STATE(1401), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58986] = 2, + ACTIONS(4350), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [59652] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4311), 5, + ACTIONS(4358), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58998] = 4, - ACTIONS(4315), 1, - anon_sym_as, - ACTIONS(4317), 1, + [59664] = 5, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(3788), 1, + anon_sym_BANG, + ACTIONS(3798), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4313), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [59014] = 2, + ACTIONS(3573), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59682] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4319), 5, + ACTIONS(4360), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59026] = 3, + [59694] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4362), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3646), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2826), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [59040] = 6, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3461), 1, + STATE(872), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [59710] = 4, + ACTIONS(4352), 1, + anon_sym_as, + ACTIONS(4364), 1, anon_sym_COLON_COLON, - ACTIONS(3536), 1, - anon_sym_COLON, - STATE(1375), 1, - sym_type_arguments, - STATE(2138), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59060] = 4, - ACTIONS(4323), 1, + ACTIONS(4350), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [59726] = 4, + ACTIONS(4368), 1, anon_sym_as, - ACTIONS(4325), 1, + ACTIONS(4370), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4321), 3, + ACTIONS(4366), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [59076] = 2, + [59742] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4327), 5, + ACTIONS(4372), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59088] = 6, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(4173), 1, - anon_sym_COMMA, - ACTIONS(4175), 1, - anon_sym_GT, - STATE(2018), 1, - aux_sym_type_parameters_repeat1, - STATE(2019), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59108] = 4, - ACTIONS(2826), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3646), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4270), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59124] = 5, - ACTIONS(4329), 1, - anon_sym_RPAREN, - ACTIONS(4331), 1, - anon_sym_COMMA, - STATE(2146), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3441), 2, - anon_sym_COLON, - anon_sym_PIPE, - [59142] = 5, - ACTIONS(3552), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_COLON, - ACTIONS(3656), 1, - anon_sym_BANG, + [59754] = 4, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(4374), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59160] = 3, - ACTIONS(4333), 1, + STATE(116), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [59770] = 6, + ACTIONS(3702), 1, + anon_sym_PIPE, + ACTIONS(4376), 1, + anon_sym_SEMI, + ACTIONS(4378), 1, + anon_sym_COLON, + ACTIONS(4380), 1, anon_sym_EQ, + ACTIONS(4382), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 4, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - [59174] = 2, + [59790] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4335), 5, + ACTIONS(4384), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59186] = 2, + [59802] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3031), 5, + ACTIONS(4386), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [59198] = 2, + anon_sym_COMMA, + [59814] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3021), 5, + ACTIONS(4388), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [59210] = 3, + anon_sym_COMMA, + [59826] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, + ACTIONS(3489), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2614), 3, + ACTIONS(2622), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [59224] = 2, + [59840] = 5, + ACTIONS(3571), 1, + anon_sym_COLON_COLON, + ACTIONS(3788), 1, + anon_sym_BANG, + ACTIONS(4390), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3932), 5, - anon_sym_LPAREN, + ACTIONS(3573), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59858] = 5, + ACTIONS(4392), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [59236] = 2, + ACTIONS(4394), 1, + anon_sym_COMMA, + STATE(2172), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3489), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59876] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4337), 5, + ACTIONS(4396), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59248] = 5, - ACTIONS(3538), 1, - anon_sym_EQ, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(2015), 1, - sym_trait_bounds, + [59888] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4339), 2, + ACTIONS(3686), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2990), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_GT, - [59266] = 4, - ACTIONS(4323), 1, - anon_sym_as, - ACTIONS(4341), 1, - anon_sym_COLON_COLON, + [59902] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4321), 3, + ACTIONS(3139), 5, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [59282] = 5, - ACTIONS(3654), 1, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(3656), 1, + anon_sym_where, + anon_sym_EQ, + [59914] = 5, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(3788), 1, anon_sym_BANG, - ACTIONS(3658), 1, + ACTIONS(3790), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, + ACTIONS(3573), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59300] = 6, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(4343), 1, - anon_sym_COMMA, - ACTIONS(4345), 1, - anon_sym_GT, - STATE(2019), 1, - sym_trait_bounds, - STATE(2101), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59320] = 2, + [59932] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4347), 5, + ACTIONS(3121), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - [59332] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4349), 1, - anon_sym_if, + [59944] = 6, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(4398), 1, + anon_sym_SEMI, + ACTIONS(4400), 1, + anon_sym_COLON, + ACTIONS(4402), 1, + anon_sym_EQ, + ACTIONS(4404), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1112), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [59348] = 4, - ACTIONS(4155), 1, + [59964] = 4, + ACTIONS(4237), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(3501), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4305), 2, + ACTIONS(4209), 2, anon_sym_RPAREN, anon_sym_COMMA, - [59364] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(4351), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(121), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [59380] = 4, - ACTIONS(4323), 1, - anon_sym_as, - ACTIONS(4353), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4321), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [59980] = 5, + ACTIONS(786), 1, + anon_sym_RPAREN, + ACTIONS(4406), 1, anon_sym_COMMA, - [59396] = 2, + STATE(2032), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2806), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3489), 2, anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [59408] = 5, - ACTIONS(4355), 1, - anon_sym_RPAREN, - ACTIONS(4357), 1, + anon_sym_PIPE, + [59998] = 6, + ACTIONS(3952), 1, + anon_sym_COLON, + ACTIONS(4195), 1, anon_sym_COMMA, - STATE(2147), 1, - aux_sym_parameters_repeat1, + ACTIONS(4197), 1, + anon_sym_GT, + STATE(2007), 1, + aux_sym_type_parameters_repeat1, + STATE(2008), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, + [60018] = 6, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3509), 1, + anon_sym_COLON_COLON, + ACTIONS(3616), 1, anon_sym_COLON, - anon_sym_PIPE, - [59426] = 5, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - STATE(275), 1, - sym_declaration_list, - STATE(2276), 1, - sym_where_clause, + STATE(1390), 1, + sym_type_arguments, + STATE(2170), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59443] = 5, - ACTIONS(3305), 1, + [60038] = 4, + ACTIONS(582), 1, anon_sym_LBRACE, - ACTIONS(4359), 1, - sym_identifier, - ACTIONS(4361), 1, - anon_sym_STAR, - STATE(2067), 1, - sym_use_list, + ACTIONS(4408), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59460] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1097), 1, - sym_line_comment, - ACTIONS(4363), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4365), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59475] = 5, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - STATE(1037), 1, - sym_declaration_list, - STATE(2236), 1, - sym_where_clause, + STATE(253), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [60054] = 6, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(4410), 1, + anon_sym_SEMI, + ACTIONS(4412), 1, + anon_sym_COLON, + ACTIONS(4414), 1, + anon_sym_EQ, + ACTIONS(4416), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59492] = 5, - ACTIONS(4025), 1, - anon_sym_LPAREN, - ACTIONS(4027), 1, - anon_sym_LBRACE, - ACTIONS(4029), 1, - anon_sym_LBRACK, - STATE(1086), 1, - sym_delim_token_tree, + [60074] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59509] = 4, - ACTIONS(4367), 1, - anon_sym_DQUOTE, - STATE(1881), 1, - aux_sym_string_literal_repeat1, + ACTIONS(4418), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [60086] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4369), 2, - sym__string_content, - sym_escape_sequence, - [59524] = 5, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(4420), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - STATE(479), 1, - sym_declaration_list, - STATE(2163), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [60098] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59541] = 3, - ACTIONS(4081), 1, + ACTIONS(4422), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [60110] = 4, + ACTIONS(2990), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4371), 3, + ACTIONS(3686), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4424), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - [59554] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [60126] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4373), 3, + ACTIONS(4003), 5, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59567] = 5, - ACTIONS(2476), 1, - anon_sym_PLUS, - ACTIONS(4375), 1, - anon_sym_COMMA, - ACTIONS(4377), 1, - anon_sym_GT, - STATE(2125), 1, - aux_sym_type_arguments_repeat1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + [60138] = 3, + ACTIONS(4427), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59584] = 5, - ACTIONS(4081), 1, + ACTIONS(2718), 4, anon_sym_PLUS, - ACTIONS(4375), 1, anon_sym_COMMA, - ACTIONS(4377), 1, anon_sym_GT, - STATE(2125), 1, - aux_sym_type_arguments_repeat1, + anon_sym_COLON_COLON, + [60152] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59601] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + ACTIONS(4429), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [60164] = 5, + ACTIONS(790), 1, + anon_sym_RPAREN, + ACTIONS(4431), 1, + anon_sym_COMMA, + STATE(2111), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4379), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3489), 2, + anon_sym_COLON, anon_sym_PIPE, - [59614] = 5, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4355), 1, - anon_sym_RPAREN, - ACTIONS(4357), 1, + [60182] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4433), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(2147), 1, - aux_sym_parameters_repeat1, + [60194] = 4, + ACTIONS(4424), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59631] = 5, - ACTIONS(4081), 1, + ACTIONS(2990), 2, + anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(4381), 1, + ACTIONS(3686), 2, anon_sym_COMMA, - ACTIONS(4383), 1, - anon_sym_GT, - STATE(2155), 1, - aux_sym_type_arguments_repeat1, + anon_sym_PIPE, + [60210] = 5, + ACTIONS(3618), 1, + anon_sym_EQ, + ACTIONS(3952), 1, + anon_sym_COLON, + STATE(1996), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59648] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + ACTIONS(4435), 2, + anon_sym_COMMA, + anon_sym_GT, + [60228] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4385), 3, - anon_sym_RPAREN, + ACTIONS(4437), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_PIPE, - [59661] = 5, - ACTIONS(2476), 1, - anon_sym_PLUS, - ACTIONS(4381), 1, + [60240] = 5, + ACTIONS(4195), 1, anon_sym_COMMA, - ACTIONS(4383), 1, + ACTIONS(4197), 1, anon_sym_GT, - STATE(2155), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4439), 1, + anon_sym_EQ, + STATE(2007), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59678] = 5, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - STATE(415), 1, - sym_declaration_list, - STATE(2326), 1, - sym_where_clause, + [60257] = 5, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4441), 1, + anon_sym_RPAREN, + ACTIONS(4443), 1, + anon_sym_COMMA, + STATE(1917), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59695] = 4, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(2019), 1, - sym_trait_bounds, + [60274] = 3, + ACTIONS(4445), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4387), 2, - anon_sym_COMMA, - anon_sym_GT, - [59710] = 5, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(4389), 1, + ACTIONS(4447), 3, + sym_self, + sym_super, + sym_crate, + [60287] = 5, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4449), 1, anon_sym_SEMI, - ACTIONS(4391), 1, - anon_sym_COLON, - ACTIONS(4393), 1, + ACTIONS(4451), 1, anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59727] = 5, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4083), 1, + [60304] = 5, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, anon_sym_LBRACE, - STATE(286), 1, - sym_enum_variant_list, - STATE(2252), 1, - sym_where_clause, + ACTIONS(4069), 1, + anon_sym_LBRACK, + STATE(1117), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59744] = 4, - ACTIONS(3656), 1, - anon_sym_BANG, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, + [60321] = 3, + ACTIONS(4455), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59759] = 5, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(4395), 1, - anon_sym_RBRACK, - ACTIONS(4397), 1, + ACTIONS(4457), 3, + sym_self, + sym_super, + sym_crate, + [60334] = 5, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4459), 1, + anon_sym_RPAREN, + ACTIONS(4461), 1, anon_sym_COMMA, - STATE(1975), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2117), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59776] = 5, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(4399), 1, - anon_sym_SEMI, - ACTIONS(4401), 1, - anon_sym_EQ, - STATE(2405), 1, - sym_trait_bounds, + [60351] = 4, + ACTIONS(4463), 1, + anon_sym_DQUOTE, + STATE(1825), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59793] = 5, - ACTIONS(4173), 1, - anon_sym_COMMA, - ACTIONS(4175), 1, - anon_sym_GT, - ACTIONS(4403), 1, - anon_sym_EQ, - STATE(2018), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4465), 2, + sym__string_content, + sym_escape_sequence, + [60366] = 5, + ACTIONS(3347), 1, + anon_sym_LBRACE, + ACTIONS(4467), 1, + sym_identifier, + ACTIONS(4469), 1, + anon_sym_STAR, + STATE(2077), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59810] = 5, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(4405), 1, - anon_sym_SEMI, - ACTIONS(4407), 1, + [60383] = 5, + ACTIONS(3952), 1, anon_sym_COLON, - ACTIONS(4409), 1, + ACTIONS(4471), 1, + anon_sym_SEMI, + ACTIONS(4473), 1, anon_sym_EQ, + STATE(2502), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59827] = 5, - ACTIONS(3796), 1, + [60400] = 5, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(3850), 1, anon_sym_where, - STATE(284), 1, - sym_declaration_list, - STATE(2210), 1, + STATE(337), 1, + sym_field_declaration_list, + STATE(2304), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59844] = 5, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LT, - STATE(1663), 1, - sym_parameters, - STATE(2289), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59861] = 5, - ACTIONS(4025), 1, + [60417] = 5, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(4027), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - STATE(1091), 1, + STATE(840), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59878] = 4, - ACTIONS(4411), 1, + [60434] = 4, + ACTIONS(4475), 1, anon_sym_DQUOTE, - STATE(1851), 1, + STATE(1887), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4413), 2, + ACTIONS(4477), 2, sym__string_content, sym_escape_sequence, - [59893] = 4, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(2019), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4415), 2, - anon_sym_COMMA, - anon_sym_GT, - [59908] = 5, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LT, - STATE(1683), 1, - sym_parameters, - STATE(2245), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59925] = 5, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [60449] = 5, + ACTIONS(3850), 1, anon_sym_where, - STATE(987), 1, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(346), 1, sym_declaration_list, - STATE(2231), 1, + STATE(2350), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59942] = 5, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LT, - STATE(1659), 1, - sym_parameters, - STATE(2268), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59959] = 4, + [60466] = 4, ACTIONS(3), 1, sym_block_comment, ACTIONS(1097), 1, sym_line_comment, - ACTIONS(4418), 1, + ACTIONS(4479), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4420), 3, + ACTIONS(4481), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59974] = 5, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(4422), 1, - anon_sym_RPAREN, - ACTIONS(4424), 1, - anon_sym_COMMA, - STATE(1973), 1, - aux_sym_tuple_pattern_repeat1, + [60481] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59991] = 5, - ACTIONS(4426), 1, + ACTIONS(4483), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60494] = 5, + ACTIONS(3507), 1, anon_sym_LPAREN, - ACTIONS(4428), 1, - anon_sym_LBRACE, - ACTIONS(4430), 1, - anon_sym_LBRACK, - STATE(1961), 1, - sym_token_tree, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(1705), 1, + sym_parameters, + STATE(2318), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60008] = 4, - ACTIONS(4432), 1, - anon_sym_DQUOTE, - STATE(1798), 1, - aux_sym_string_literal_repeat1, + [60511] = 4, + ACTIONS(3788), 1, + anon_sym_BANG, + ACTIONS(3798), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4434), 2, - sym__string_content, - sym_escape_sequence, - [60023] = 5, - ACTIONS(3826), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - STATE(305), 1, - sym_field_declaration_list, - STATE(2247), 1, - sym_where_clause, + ACTIONS(3573), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60526] = 5, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(1725), 1, + sym_parameters, + STATE(2174), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60040] = 5, - ACTIONS(3744), 1, - anon_sym_PIPE, - ACTIONS(4436), 1, - anon_sym_SEMI, - ACTIONS(4438), 1, - anon_sym_COLON, - ACTIONS(4440), 1, - anon_sym_EQ, + [60543] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(335), 1, + sym_declaration_list, + STATE(2264), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60057] = 5, - ACTIONS(4442), 1, - anon_sym_LPAREN, - ACTIONS(4444), 1, + [60560] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4193), 1, anon_sym_LBRACE, - ACTIONS(4446), 1, - anon_sym_LBRACK, - STATE(183), 1, - sym_delim_token_tree, + STATE(993), 1, + sym_enum_variant_list, + STATE(2246), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60074] = 5, - ACTIONS(4081), 1, + [60577] = 5, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4329), 1, + ACTIONS(4485), 1, anon_sym_RPAREN, - ACTIONS(4331), 1, + ACTIONS(4487), 1, anon_sym_COMMA, - STATE(2146), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60091] = 5, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(4448), 1, - anon_sym_SEMI, - ACTIONS(4450), 1, - anon_sym_EQ, - STATE(2573), 1, - sym_trait_bounds, + STATE(2129), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60108] = 5, - ACTIONS(3806), 1, + [60594] = 5, + ACTIONS(3347), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - STATE(840), 1, - sym_declaration_list, - STATE(2182), 1, - sym_where_clause, + ACTIONS(4131), 1, + sym_identifier, + ACTIONS(4133), 1, + anon_sym_STAR, + STATE(2082), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60125] = 5, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4179), 1, - anon_sym_LBRACE, - STATE(957), 1, - sym_enum_variant_list, - STATE(2202), 1, - sym_where_clause, + [60611] = 5, + ACTIONS(4342), 1, + anon_sym_COMMA, + ACTIONS(4344), 1, + anon_sym_GT, + ACTIONS(4439), 1, + anon_sym_EQ, + STATE(2133), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60142] = 5, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [60628] = 5, + ACTIONS(3850), 1, anon_sym_where, - STATE(860), 1, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(267), 1, sym_declaration_list, - STATE(2187), 1, + STATE(2274), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60159] = 5, - ACTIONS(4293), 1, - anon_sym_RPAREN, - ACTIONS(4297), 1, + [60645] = 5, + ACTIONS(2501), 1, + anon_sym_PLUS, + ACTIONS(4489), 1, anon_sym_COMMA, - ACTIONS(4299), 1, - anon_sym_PIPE, - STATE(2141), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4491), 1, + anon_sym_GT, + STATE(2157), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60176] = 5, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [60662] = 5, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4489), 1, + anon_sym_COMMA, + ACTIONS(4491), 1, + anon_sym_GT, + STATE(2157), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60679] = 5, + ACTIONS(2604), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + anon_sym_LT2, + STATE(833), 1, + sym_parameters, + STATE(1392), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60696] = 5, + ACTIONS(3850), 1, anon_sym_where, - STATE(385), 1, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(919), 1, sym_declaration_list, - STATE(2216), 1, + STATE(2196), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60193] = 4, - ACTIONS(4107), 1, - anon_sym_COLON_COLON, - ACTIONS(4131), 1, + [60713] = 5, + ACTIONS(3952), 1, anon_sym_COLON, + ACTIONS(4493), 1, + anon_sym_SEMI, + ACTIONS(4495), 1, + anon_sym_EQ, + STATE(2617), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60208] = 4, - ACTIONS(3656), 1, - anon_sym_BANG, - ACTIONS(3682), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60223] = 5, - ACTIONS(3828), 1, + [60730] = 5, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4179), 1, + ACTIONS(3856), 1, anon_sym_LBRACE, - STATE(878), 1, - sym_enum_variant_list, - STATE(2195), 1, + STATE(912), 1, + sym_field_declaration_list, + STATE(2191), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60240] = 4, + [60747] = 4, ACTIONS(3), 1, sym_block_comment, ACTIONS(1097), 1, sym_line_comment, - ACTIONS(4452), 1, + ACTIONS(4497), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4454), 3, + ACTIONS(4499), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [60255] = 5, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - STATE(975), 1, - sym_declaration_list, - STATE(2258), 1, - sym_where_clause, + [60762] = 5, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(1661), 1, + sym_parameters, + STATE(2289), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60272] = 5, - ACTIONS(3828), 1, + [60779] = 4, + ACTIONS(4213), 1, + anon_sym_COLON_COLON, + ACTIONS(4235), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60794] = 4, + ACTIONS(3571), 1, + anon_sym_COLON_COLON, + ACTIONS(3788), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3573), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60809] = 5, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3862), 1, + ACTIONS(3914), 1, anon_sym_LBRACE, - STATE(884), 1, - sym_field_declaration_list, - STATE(2173), 1, + STATE(284), 1, + sym_declaration_list, + STATE(2215), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60289] = 5, - ACTIONS(3459), 1, + [60826] = 5, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3507), 1, anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LT, - STATE(1715), 1, + STATE(1392), 1, + sym_type_arguments, + STATE(1410), 1, sym_parameters, - STATE(2267), 1, - sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60306] = 4, - ACTIONS(4456), 1, - anon_sym_COMMA, - STATE(1860), 1, - aux_sym_where_clause_repeat1, + [60843] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60321] = 5, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(4458), 1, + ACTIONS(4501), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4460), 1, anon_sym_PIPE, - STATE(1921), 1, - aux_sym_closure_parameters_repeat1, + [60856] = 5, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(4503), 1, + anon_sym_RPAREN, + ACTIONS(4505), 1, + anon_sym_COMMA, + STATE(1970), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60338] = 5, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3902), 1, + [60873] = 5, + ACTIONS(4334), 1, anon_sym_COLON, - STATE(1386), 1, - sym_type_arguments, - STATE(2136), 1, - sym_trait_bounds, + ACTIONS(4507), 1, + anon_sym_COMMA, + ACTIONS(4509), 1, + anon_sym_PIPE, + STATE(1958), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60355] = 4, - ACTIONS(3552), 1, - anon_sym_COLON_COLON, - ACTIONS(3656), 1, - anon_sym_BANG, + [60890] = 5, + ACTIONS(4332), 1, + anon_sym_RPAREN, + ACTIONS(4336), 1, + anon_sym_COMMA, + ACTIONS(4338), 1, + anon_sym_PIPE, + STATE(2169), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60370] = 4, - ACTIONS(4462), 1, + [60907] = 4, + ACTIONS(4511), 1, anon_sym_DQUOTE, - STATE(1881), 1, + STATE(1887), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4369), 2, + ACTIONS(4477), 2, sym__string_content, sym_escape_sequence, - [60385] = 4, - ACTIONS(4466), 1, - anon_sym_COMMA, - STATE(1847), 1, - aux_sym_where_clause_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4464), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60400] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4468), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [60413] = 4, - ACTIONS(4470), 1, - anon_sym_COMMA, - STATE(1854), 1, - aux_sym_tuple_pattern_repeat1, + [60922] = 5, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(1671), 1, + sym_parameters, + STATE(2313), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4468), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [60428] = 5, - ACTIONS(3828), 1, + [60939] = 5, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3862), 1, + ACTIONS(4161), 1, anon_sym_LBRACE, - STATE(901), 1, - sym_field_declaration_list, - STATE(2200), 1, + STATE(378), 1, + sym_enum_variant_list, + STATE(2301), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60445] = 5, - ACTIONS(3305), 1, - anon_sym_LBRACE, - ACTIONS(4109), 1, - sym_identifier, - ACTIONS(4111), 1, - anon_sym_STAR, - STATE(2073), 1, - sym_use_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60462] = 5, - ACTIONS(4442), 1, + [60956] = 5, + ACTIONS(4513), 1, anon_sym_LPAREN, - ACTIONS(4444), 1, + ACTIONS(4515), 1, anon_sym_LBRACE, - ACTIONS(4446), 1, + ACTIONS(4517), 1, anon_sym_LBRACK, - STATE(110), 1, + STATE(119), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60479] = 5, - ACTIONS(3826), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - STATE(428), 1, - sym_field_declaration_list, - STATE(2322), 1, - sym_where_clause, + [60973] = 5, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4346), 1, + anon_sym_RPAREN, + ACTIONS(4348), 1, + anon_sym_COMMA, + STATE(2159), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60496] = 5, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4473), 1, + [60990] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3489), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4519), 2, anon_sym_RPAREN, - ACTIONS(4475), 1, anon_sym_COMMA, - STATE(2097), 1, - aux_sym_tuple_type_repeat1, + [61003] = 4, + ACTIONS(3788), 1, + anon_sym_BANG, + ACTIONS(3816), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60513] = 4, - ACTIONS(4479), 1, + ACTIONS(3573), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61018] = 5, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4521), 1, anon_sym_COMMA, - STATE(1860), 1, - aux_sym_where_clause_repeat1, + ACTIONS(4523), 1, + anon_sym_GT, + STATE(2150), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4477), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60528] = 3, + [61035] = 4, + ACTIONS(3952), 1, + anon_sym_COLON, + STATE(2008), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4482), 2, - anon_sym_RPAREN, + ACTIONS(4525), 2, anon_sym_COMMA, - [60541] = 4, - ACTIONS(3), 1, + anon_sym_GT, + [61050] = 5, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, + anon_sym_where, + STATE(391), 1, + sym_field_declaration_list, + STATE(2317), 1, + sym_where_clause, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1097), 1, sym_line_comment, - ACTIONS(4484), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4486), 3, + [61067] = 5, + ACTIONS(2501), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60556] = 5, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4488), 1, - anon_sym_RPAREN, - ACTIONS(4490), 1, + ACTIONS(4521), 1, anon_sym_COMMA, - STATE(2139), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4523), 1, + anon_sym_GT, + STATE(2150), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60573] = 4, - ACTIONS(4492), 1, - anon_sym_DQUOTE, - STATE(1887), 1, - aux_sym_string_literal_repeat1, + [61084] = 5, + ACTIONS(3507), 1, + anon_sym_LPAREN, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(1684), 1, + sym_parameters, + STATE(2322), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4494), 2, - sym__string_content, - sym_escape_sequence, - [60588] = 5, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, + [61101] = 5, + ACTIONS(4513), 1, anon_sym_LPAREN, - STATE(1386), 1, - sym_type_arguments, - STATE(1399), 1, - sym_parameters, + ACTIONS(4515), 1, + anon_sym_LBRACE, + ACTIONS(4517), 1, + anon_sym_LBRACK, + STATE(180), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60605] = 5, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4083), 1, + [61118] = 5, + ACTIONS(4528), 1, + anon_sym_LPAREN, + ACTIONS(4530), 1, anon_sym_LBRACE, - STATE(432), 1, - sym_enum_variant_list, - STATE(2337), 1, - sym_where_clause, + ACTIONS(4532), 1, + anon_sym_LBRACK, + STATE(1015), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60622] = 5, - ACTIONS(4205), 1, + [61135] = 5, + ACTIONS(4223), 1, anon_sym_LPAREN, - ACTIONS(4496), 1, + ACTIONS(4534), 1, anon_sym_RBRACK, - ACTIONS(4498), 1, + ACTIONS(4536), 1, anon_sym_EQ, - STATE(2413), 1, + STATE(2532), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60639] = 5, - ACTIONS(4500), 1, + [61152] = 5, + ACTIONS(4538), 1, anon_sym_LPAREN, - ACTIONS(4502), 1, + ACTIONS(4540), 1, anon_sym_LBRACE, - ACTIONS(4504), 1, + ACTIONS(4542), 1, anon_sym_LBRACK, - STATE(1372), 1, - sym_delim_token_tree, + STATE(2051), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60656] = 5, - ACTIONS(4343), 1, - anon_sym_COMMA, - ACTIONS(4345), 1, - anon_sym_GT, - ACTIONS(4403), 1, - anon_sym_EQ, - STATE(2101), 1, - aux_sym_type_parameters_repeat1, + [61169] = 4, + ACTIONS(4544), 1, + anon_sym_DQUOTE, + STATE(1887), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60673] = 5, - ACTIONS(4506), 1, - anon_sym_LPAREN, - ACTIONS(4508), 1, - anon_sym_LBRACE, - ACTIONS(4510), 1, - anon_sym_LBRACK, - STATE(820), 1, - sym_delim_token_tree, + ACTIONS(4477), 2, + sym__string_content, + sym_escape_sequence, + [61184] = 5, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4546), 1, + anon_sym_SEMI, + ACTIONS(4548), 1, + anon_sym_EQ, + ACTIONS(4550), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60690] = 5, - ACTIONS(2572), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, - anon_sym_LT2, - STATE(909), 1, - sym_parameters, - STATE(1386), 1, - sym_type_arguments, + [61201] = 5, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4392), 1, + anon_sym_RPAREN, + ACTIONS(4394), 1, + anon_sym_COMMA, + STATE(2172), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60707] = 4, - ACTIONS(4512), 1, + [61218] = 4, + ACTIONS(4552), 1, anon_sym_DQUOTE, - STATE(1881), 1, + STATE(1854), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4369), 2, + ACTIONS(4554), 2, sym__string_content, sym_escape_sequence, - [60722] = 5, - ACTIONS(3744), 1, - anon_sym_PIPE, - ACTIONS(4514), 1, - anon_sym_SEMI, - ACTIONS(4516), 1, - anon_sym_COLON, - ACTIONS(4518), 1, - anon_sym_EQ, + [61233] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60739] = 5, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4520), 1, + ACTIONS(3489), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4556), 2, anon_sym_RPAREN, - ACTIONS(4522), 1, anon_sym_COMMA, - STATE(2047), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [61246] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(901), 1, + sym_declaration_list, + STATE(2216), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60756] = 5, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LT, - STATE(1724), 1, - sym_parameters, - STATE(2319), 1, - sym_type_parameters, + [61263] = 4, + ACTIONS(4560), 1, + anon_sym_COMMA, + STATE(1876), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60773] = 5, - ACTIONS(4506), 1, - anon_sym_LPAREN, - ACTIONS(4508), 1, + ACTIONS(4558), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4510), 1, - anon_sym_LBRACK, - STATE(822), 1, - sym_delim_token_tree, + [61278] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(932), 1, + sym_declaration_list, + STATE(2221), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60790] = 4, - ACTIONS(4524), 1, - anon_sym_DQUOTE, - STATE(1872), 1, - aux_sym_string_literal_repeat1, + [61295] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4193), 1, + anon_sym_LBRACE, + STATE(941), 1, + sym_enum_variant_list, + STATE(2229), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4526), 2, - sym__string_content, - sym_escape_sequence, - [60805] = 4, - ACTIONS(4105), 1, + [61312] = 4, + ACTIONS(4211), 1, anon_sym_COLON, - ACTIONS(4107), 1, + ACTIONS(4213), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(3501), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60820] = 4, - ACTIONS(3656), 1, + [61327] = 4, + ACTIONS(3788), 1, anon_sym_BANG, - ACTIONS(3658), 1, + ACTIONS(3790), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, + ACTIONS(3573), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60835] = 3, + [61342] = 4, + ACTIONS(4563), 1, + anon_sym_COMMA, + STATE(1876), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3093), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [61357] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1097), 1, + sym_line_comment, + ACTIONS(4565), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4567), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61372] = 5, ACTIONS(4528), 1, + anon_sym_LPAREN, + ACTIONS(4530), 1, + anon_sym_LBRACE, + ACTIONS(4532), 1, + anon_sym_LBRACK, + STATE(1016), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61389] = 3, + ACTIONS(4569), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3744), 3, + ACTIONS(3702), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [60848] = 4, - ACTIONS(4530), 1, + [61402] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3856), 1, + anon_sym_LBRACE, + STATE(953), 1, + sym_field_declaration_list, + STATE(2234), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61419] = 5, + ACTIONS(786), 1, + anon_sym_RPAREN, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4406), 1, + anon_sym_COMMA, + STATE(2032), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61436] = 4, + ACTIONS(4571), 1, anon_sym_DQUOTE, - STATE(1881), 1, + STATE(1887), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4532), 2, + ACTIONS(4573), 2, sym__string_content, sym_escape_sequence, - [60863] = 3, + [61451] = 5, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3952), 1, + anon_sym_COLON, + STATE(1392), 1, + sym_type_arguments, + STATE(1915), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4535), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60876] = 4, - ACTIONS(2333), 1, + [61468] = 4, + ACTIONS(2365), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4576), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1098), 2, + STATE(1175), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [60891] = 5, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - STATE(891), 1, - sym_declaration_list, - STATE(2179), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60908] = 5, - ACTIONS(3459), 1, + [61483] = 5, + ACTIONS(3507), 1, anon_sym_LPAREN, - ACTIONS(3830), 1, + ACTIONS(3852), 1, anon_sym_LT, - STATE(1695), 1, + STATE(1682), 1, sym_parameters, - STATE(2313), 1, + STATE(2250), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60925] = 5, - ACTIONS(790), 1, + [61500] = 4, + ACTIONS(4580), 1, + anon_sym_COMMA, + STATE(1881), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4578), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [61515] = 4, + ACTIONS(4582), 1, + anon_sym_DQUOTE, + STATE(1870), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4584), 2, + sym__string_content, + sym_escape_sequence, + [61530] = 4, + ACTIONS(4586), 1, + anon_sym_DQUOTE, + STATE(1898), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4588), 2, + sym__string_content, + sym_escape_sequence, + [61545] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4590), 3, anon_sym_RPAREN, - ACTIONS(4081), 1, + anon_sym_RBRACK, + anon_sym_COMMA, + [61558] = 4, + ACTIONS(4592), 1, + anon_sym_COMMA, + STATE(1895), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4590), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [61573] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1097), 1, + sym_line_comment, + ACTIONS(4595), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4597), 3, anon_sym_PLUS, - ACTIONS(4287), 1, - anon_sym_COMMA, - STATE(1924), 1, - aux_sym_parameters_repeat1, + anon_sym_STAR, + anon_sym_QMARK, + [61588] = 5, + ACTIONS(4599), 1, + anon_sym_LPAREN, + ACTIONS(4601), 1, + anon_sym_LBRACE, + ACTIONS(4603), 1, + anon_sym_LBRACK, + STATE(1382), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60942] = 4, - ACTIONS(4539), 1, + [61605] = 4, + ACTIONS(4605), 1, anon_sym_DQUOTE, - STATE(1881), 1, + STATE(1887), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4369), 2, + ACTIONS(4477), 2, sym__string_content, sym_escape_sequence, - [60957] = 5, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4541), 1, + [61620] = 5, + ACTIONS(790), 1, anon_sym_RPAREN, - ACTIONS(4543), 1, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4431), 1, anon_sym_COMMA, - STATE(1919), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2111), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60974] = 5, - ACTIONS(786), 1, - anon_sym_RPAREN, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4283), 1, - anon_sym_COMMA, - STATE(2056), 1, - aux_sym_parameters_repeat1, + [61637] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(479), 1, + sym_declaration_list, + STATE(2305), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60991] = 3, - ACTIONS(4545), 1, - anon_sym_in, + [61654] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4161), 1, + anon_sym_LBRACE, + STATE(448), 1, + sym_enum_variant_list, + STATE(2284), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4547), 3, - sym_self, - sym_super, - sym_crate, - [61004] = 5, - ACTIONS(4500), 1, + [61671] = 5, + ACTIONS(4599), 1, anon_sym_LPAREN, - ACTIONS(4502), 1, + ACTIONS(4601), 1, anon_sym_LBRACE, - ACTIONS(4504), 1, + ACTIONS(4603), 1, anon_sym_LBRACK, - STATE(1369), 1, + STATE(1381), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61021] = 3, - ACTIONS(4549), 1, - anon_sym_in, + [61688] = 4, + ACTIONS(3952), 1, + anon_sym_COLON, + STATE(2008), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4551), 3, - sym_self, - sym_super, - sym_crate, - [61034] = 5, - ACTIONS(3796), 1, + ACTIONS(4607), 2, + anon_sym_COMMA, + anon_sym_GT, + [61703] = 5, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4609), 1, + anon_sym_SEMI, + ACTIONS(4611), 1, + anon_sym_EQ, + ACTIONS(4613), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61720] = 5, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4615), 1, + anon_sym_SEMI, + ACTIONS(4617), 1, + anon_sym_EQ, + ACTIONS(4619), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61737] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, + STATE(1053), 1, + sym_declaration_list, + STATE(2267), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61754] = 5, + ACTIONS(3850), 1, anon_sym_where, - STATE(318), 1, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(1081), 1, sym_declaration_list, - STATE(2279), 1, + STATE(2272), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61051] = 5, - ACTIONS(4081), 1, + [61771] = 5, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4553), 1, + ACTIONS(4621), 1, anon_sym_RPAREN, - ACTIONS(4555), 1, + ACTIONS(4623), 1, anon_sym_COMMA, - STATE(2007), 1, + STATE(1994), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61788] = 5, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4625), 1, + anon_sym_RPAREN, + ACTIONS(4627), 1, + anon_sym_COMMA, + STATE(1988), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61068] = 4, - ACTIONS(3796), 1, + [61805] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(4557), 1, - anon_sym_SEMI, - STATE(464), 1, + STATE(1140), 1, sym_declaration_list, + STATE(2296), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61082] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4559), 1, - sym_identifier, - STATE(2358), 1, - sym_type_arguments, + [61822] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(491), 1, + sym_declaration_list, + STATE(2331), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61096] = 3, - ACTIONS(2476), 1, + [61839] = 3, + ACTIONS(4129), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4561), 2, - anon_sym_COMMA, - anon_sym_GT, - [61108] = 4, - ACTIONS(4561), 1, - anon_sym_GT, - ACTIONS(4563), 1, + ACTIONS(4629), 3, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1898), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61122] = 4, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(4566), 1, - anon_sym_GT, - STATE(2223), 1, - sym_lifetime, + anon_sym_PIPE, + [61852] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61136] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4568), 1, - sym_identifier, - STATE(2358), 1, - sym_type_arguments, + ACTIONS(4631), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [61865] = 5, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_RBRACK, + ACTIONS(4635), 1, + anon_sym_COMMA, + STATE(2010), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61150] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4568), 1, - sym_identifier, - STATE(2355), 1, - sym_type_arguments, + [61882] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61164] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + ACTIONS(4637), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [61892] = 4, + ACTIONS(4195), 1, + anon_sym_COMMA, + ACTIONS(4197), 1, + anon_sym_GT, + STATE(2007), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4570), 2, + [61906] = 4, + ACTIONS(4639), 1, anon_sym_RPAREN, + ACTIONS(4641), 1, anon_sym_COMMA, - [61176] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + STATE(1992), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4572), 2, - anon_sym_COMMA, - anon_sym_GT, - [61188] = 4, - ACTIONS(4087), 1, - anon_sym_LBRACE, - ACTIONS(4574), 1, - anon_sym_SEMI, - STATE(313), 1, - sym_block, + [61920] = 4, + ACTIONS(4643), 1, + sym_identifier, + ACTIONS(4645), 1, + anon_sym_ref, + ACTIONS(4647), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61202] = 4, - ACTIONS(3796), 1, + [61934] = 4, + ACTIONS(3914), 1, anon_sym_LBRACE, - ACTIONS(4576), 1, + ACTIONS(4649), 1, anon_sym_SEMI, - STATE(379), 1, + STATE(409), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61216] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4578), 1, - anon_sym_SEMI, - STATE(278), 1, - sym_declaration_list, + [61948] = 4, + ACTIONS(4651), 1, + sym_identifier, + ACTIONS(4653), 1, + anon_sym_ref, + ACTIONS(4655), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61230] = 4, - ACTIONS(3796), 1, + [61962] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4580), 1, - anon_sym_SEMI, - STATE(416), 1, - sym_declaration_list, + ACTIONS(4129), 1, + anon_sym_PLUS, + STATE(843), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61244] = 4, - ACTIONS(3590), 1, - anon_sym_COLON_COLON, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(4582), 1, + [61976] = 4, + ACTIONS(4657), 1, sym_identifier, + ACTIONS(4659), 1, + anon_sym_ref, + ACTIONS(4661), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61258] = 4, - ACTIONS(4081), 1, + [61990] = 3, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4584), 1, - anon_sym_SEMI, - ACTIONS(4586), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4663), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62002] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4665), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62014] = 4, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(4667), 1, anon_sym_EQ, + STATE(2598), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62028] = 4, + ACTIONS(4155), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_SEMI, + STATE(476), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62042] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61272] = 4, - ACTIONS(4588), 1, + ACTIONS(4671), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(4591), 1, + [62052] = 4, + ACTIONS(4673), 1, + anon_sym_COMMA, + ACTIONS(4675), 1, anon_sym_GT, - STATE(1910), 1, + STATE(2145), 1, aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61286] = 4, - ACTIONS(4593), 1, - anon_sym_RBRACE, - ACTIONS(4595), 1, + [62066] = 4, + ACTIONS(4677), 1, + anon_sym_RPAREN, + ACTIONS(4679), 1, anon_sym_COMMA, - STATE(1911), 1, - aux_sym_struct_pattern_repeat1, + STATE(1929), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61300] = 4, - ACTIONS(3830), 1, + [62080] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4682), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [62090] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2415), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [62100] = 4, + ACTIONS(3852), 1, anon_sym_LT, - ACTIONS(4598), 1, + ACTIONS(4684), 1, anon_sym_EQ, - STATE(2434), 1, + STATE(2582), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61314] = 4, - ACTIONS(4600), 1, - anon_sym_for, - ACTIONS(4602), 1, - anon_sym_loop, - ACTIONS(4604), 1, - anon_sym_while, + [62114] = 4, + ACTIONS(4155), 1, + anon_sym_LBRACE, + ACTIONS(4686), 1, + anon_sym_SEMI, + STATE(426), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61328] = 4, - ACTIONS(2580), 1, - anon_sym_LT2, - ACTIONS(4606), 1, - sym_identifier, - STATE(831), 1, - sym_type_arguments, + [62128] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61342] = 4, - ACTIONS(4608), 1, - sym_identifier, - ACTIONS(4610), 1, - anon_sym_await, - ACTIONS(4612), 1, - sym_integer_literal, + ACTIONS(4688), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62140] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61356] = 4, - ACTIONS(4614), 1, + ACTIONS(4690), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4616), 1, anon_sym_COMMA, - STATE(2092), 1, - aux_sym_field_initializer_list_repeat1, + [62150] = 3, + ACTIONS(4692), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61370] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, + ACTIONS(4694), 2, + anon_sym_default, + anon_sym_union, + [62162] = 4, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(4696), 1, + anon_sym_SEMI, + STATE(294), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4618), 2, - anon_sym_RBRACE, + [62176] = 4, + ACTIONS(504), 1, + anon_sym_RBRACK, + ACTIONS(4698), 1, anon_sym_COMMA, - [61382] = 3, - ACTIONS(4622), 1, - anon_sym_COLON, + STATE(1971), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4620), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61394] = 4, - ACTIONS(4624), 1, - anon_sym_RPAREN, - ACTIONS(4626), 1, - anon_sym_COMMA, - STATE(1932), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [62190] = 3, + ACTIONS(4249), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61408] = 3, - ACTIONS(4630), 1, - anon_sym_COLON, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62202] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4700), 2, + anon_sym_COMMA, + anon_sym_GT, + [62214] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4628), 2, + ACTIONS(4702), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61420] = 4, - ACTIONS(4458), 1, + [62226] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4704), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4632), 1, - anon_sym_PIPE, - STATE(2088), 1, - aux_sym_closure_parameters_repeat1, + [62238] = 4, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4706), 1, + anon_sym_SEMI, + ACTIONS(4708), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61434] = 4, - ACTIONS(4087), 1, + [62252] = 4, + ACTIONS(4155), 1, anon_sym_LBRACE, - ACTIONS(4634), 1, + ACTIONS(4710), 1, anon_sym_SEMI, - STATE(371), 1, + STATE(363), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61448] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4081), 1, - anon_sym_PLUS, - STATE(1078), 1, - sym_block, + [62266] = 3, + ACTIONS(3233), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61462] = 4, - ACTIONS(792), 1, + ACTIONS(4712), 2, anon_sym_RPAREN, - ACTIONS(4636), 1, anon_sym_COMMA, - STATE(1928), 1, - aux_sym_parameters_repeat1, + [62278] = 4, + ACTIONS(4714), 1, + anon_sym_for, + ACTIONS(4716), 1, + anon_sym_loop, + ACTIONS(4718), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61476] = 3, - ACTIONS(3193), 1, + [62292] = 4, + ACTIONS(3640), 1, anon_sym_COLON_COLON, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4720), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4305), 2, - anon_sym_RPAREN, + [62306] = 4, + ACTIONS(4722), 1, + anon_sym_RBRACE, + ACTIONS(4724), 1, anon_sym_COMMA, - [61488] = 4, - ACTIONS(4638), 1, - sym_identifier, - ACTIONS(4640), 1, - anon_sym_ref, - ACTIONS(4642), 1, - sym_mutable_specifier, + STATE(2163), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61502] = 2, + [62320] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4644), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61512] = 4, - ACTIONS(4482), 1, + ACTIONS(4519), 2, anon_sym_RPAREN, - ACTIONS(4646), 1, anon_sym_COMMA, - STATE(1928), 1, - aux_sym_parameters_repeat1, + [62332] = 4, + ACTIONS(3606), 1, + anon_sym_COLON_COLON, + ACTIONS(3616), 1, + anon_sym_COLON, + STATE(1915), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61526] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [62346] = 3, + ACTIONS(4309), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4482), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61538] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62358] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4649), 2, + ACTIONS(4726), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [61550] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4651), 1, - sym_identifier, - STATE(2355), 1, - sym_type_arguments, + [62368] = 4, + ACTIONS(4155), 1, + anon_sym_LBRACE, + ACTIONS(4728), 1, + anon_sym_SEMI, + STATE(492), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61564] = 4, - ACTIONS(4653), 1, - anon_sym_RPAREN, - ACTIONS(4655), 1, + [62382] = 4, + ACTIONS(4730), 1, + anon_sym_RBRACE, + ACTIONS(4732), 1, anon_sym_COMMA, - STATE(1932), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2109), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61578] = 3, - ACTIONS(4658), 1, - sym_identifier, + [62396] = 3, + ACTIONS(4736), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4660), 2, - anon_sym_default, - anon_sym_union, - [61590] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4651), 1, - sym_identifier, - STATE(2358), 1, - sym_type_arguments, + ACTIONS(4734), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62408] = 4, + ACTIONS(2642), 1, + anon_sym_LBRACE, + ACTIONS(4738), 1, + anon_sym_COLON_COLON, + STATE(1127), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61604] = 2, + [62422] = 4, + ACTIONS(3584), 1, + anon_sym_COLON_COLON, + ACTIONS(3616), 1, + anon_sym_COLON, + STATE(1915), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4662), 3, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_EQ, - [61614] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [62436] = 4, + ACTIONS(4507), 1, + anon_sym_COMMA, + ACTIONS(4740), 1, + anon_sym_PIPE, + STATE(2106), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4664), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61626] = 4, - ACTIONS(522), 1, - anon_sym_RBRACK, - ACTIONS(4666), 1, - anon_sym_COMMA, - STATE(1985), 1, - aux_sym_array_expression_repeat1, + [62450] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4742), 1, + anon_sym_move, + STATE(1092), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61640] = 2, + [62464] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4668), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61650] = 4, - ACTIONS(4091), 1, + ACTIONS(2445), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [62474] = 4, + ACTIONS(4155), 1, anon_sym_LBRACE, - ACTIONS(4670), 1, + ACTIONS(4744), 1, anon_sym_SEMI, - STATE(833), 1, + STATE(277), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61664] = 4, - ACTIONS(4672), 1, - anon_sym_RBRACE, - ACTIONS(4674), 1, - anon_sym_COMMA, - STATE(1940), 1, - aux_sym_field_declaration_list_repeat1, + [62488] = 4, + ACTIONS(4155), 1, + anon_sym_LBRACE, + ACTIONS(4746), 1, + anon_sym_SEMI, + STATE(461), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61678] = 4, - ACTIONS(4081), 1, + [62502] = 4, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4677), 1, + ACTIONS(4748), 1, anon_sym_SEMI, - ACTIONS(4679), 1, + ACTIONS(4750), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61692] = 4, - ACTIONS(2580), 1, - anon_sym_LT2, - ACTIONS(4606), 1, + [62516] = 3, + ACTIONS(4752), 1, sym_identifier, - STATE(825), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61706] = 4, - ACTIONS(3864), 1, - anon_sym_RBRACE, - ACTIONS(4681), 1, + ACTIONS(4754), 2, + anon_sym_default, + anon_sym_union, + [62528] = 4, + ACTIONS(4392), 1, + anon_sym_RPAREN, + ACTIONS(4394), 1, anon_sym_COMMA, - STATE(1940), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2172), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61720] = 4, - ACTIONS(4683), 1, - anon_sym_RBRACE, - ACTIONS(4685), 1, - anon_sym_COMMA, - STATE(2130), 1, - aux_sym_enum_variant_list_repeat2, + [62542] = 4, + ACTIONS(2501), 1, + anon_sym_PLUS, + ACTIONS(4756), 1, + sym_mutable_specifier, + ACTIONS(4758), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61734] = 2, + [62556] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4477), 3, - anon_sym_SEMI, + ACTIONS(4760), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [62566] = 3, + ACTIONS(4213), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62578] = 4, + ACTIONS(4155), 1, anon_sym_LBRACE, + ACTIONS(4762), 1, + anon_sym_SEMI, + STATE(270), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62592] = 4, + ACTIONS(2417), 1, + anon_sym_RPAREN, + ACTIONS(4764), 1, anon_sym_COMMA, - [61744] = 4, - ACTIONS(4087), 1, + STATE(1895), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62606] = 4, + ACTIONS(3305), 1, + anon_sym_RBRACK, + ACTIONS(4766), 1, + anon_sym_COMMA, + STATE(1971), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62620] = 4, + ACTIONS(4155), 1, anon_sym_LBRACE, - ACTIONS(4687), 1, + ACTIONS(4769), 1, anon_sym_SEMI, - STATE(484), 1, + STATE(297), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61758] = 4, - ACTIONS(3534), 1, - anon_sym_COLON_COLON, - ACTIONS(3536), 1, - anon_sym_COLON, - STATE(2136), 1, - sym_trait_bounds, + [62634] = 4, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(3814), 1, + anon_sym_LBRACE, + STATE(1392), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62648] = 4, + ACTIONS(3213), 1, + anon_sym_RPAREN, + ACTIONS(4771), 1, + anon_sym_COMMA, + STATE(1929), 1, + aux_sym_meta_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62662] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61772] = 4, - ACTIONS(3874), 1, - anon_sym_RBRACE, - ACTIONS(4689), 1, + ACTIONS(4773), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1957), 1, - aux_sym_enum_variant_list_repeat2, + [62672] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61786] = 4, - ACTIONS(3536), 1, - anon_sym_COLON, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, - STATE(2136), 1, - sym_trait_bounds, + ACTIONS(4775), 3, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_EQ, + [62682] = 4, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(4777), 1, + anon_sym_GT, + STATE(2373), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61800] = 2, + [62696] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4691), 3, + ACTIONS(4779), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [61810] = 4, - ACTIONS(4458), 1, + [62706] = 3, + ACTIONS(4783), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4781), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62718] = 4, + ACTIONS(4785), 1, + anon_sym_RBRACE, + ACTIONS(4787), 1, anon_sym_COMMA, - ACTIONS(4693), 1, - anon_sym_PIPE, - STATE(1921), 1, - aux_sym_closure_parameters_repeat1, + STATE(2158), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61824] = 4, - ACTIONS(4091), 1, + [62732] = 4, + ACTIONS(4155), 1, anon_sym_LBRACE, - ACTIONS(4695), 1, + ACTIONS(4789), 1, anon_sym_SEMI, - STATE(838), 1, + STATE(451), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61838] = 4, - ACTIONS(3796), 1, + [62746] = 4, + ACTIONS(3914), 1, anon_sym_LBRACE, - ACTIONS(4697), 1, + ACTIONS(4791), 1, anon_sym_SEMI, - STATE(431), 1, + STATE(300), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61852] = 4, - ACTIONS(4699), 1, - anon_sym_RBRACE, - ACTIONS(4701), 1, + [62760] = 4, + ACTIONS(4489), 1, anon_sym_COMMA, - STATE(2062), 1, - aux_sym_use_list_repeat1, + ACTIONS(4491), 1, + anon_sym_GT, + STATE(2157), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61866] = 3, - ACTIONS(4705), 1, - anon_sym_EQ, + [62774] = 4, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(4793), 1, + anon_sym_SEMI, + STATE(309), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4703), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61878] = 2, + [62788] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4795), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [62798] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4707), 3, + ACTIONS(4797), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [61888] = 4, - ACTIONS(4709), 1, + [62808] = 4, + ACTIONS(4799), 1, anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(4801), 1, anon_sym_COMMA, - STATE(1957), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2088), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61902] = 3, - ACTIONS(4147), 1, - anon_sym_COLON_COLON, + [62822] = 4, + ACTIONS(2574), 1, + anon_sym_RPAREN, + ACTIONS(4803), 1, + anon_sym_COMMA, + STATE(2152), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61914] = 2, + [62836] = 4, + ACTIONS(3922), 1, + anon_sym_RBRACE, + ACTIONS(4805), 1, + anon_sym_COMMA, + STATE(1990), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4714), 3, - anon_sym_SEMI, + [62850] = 4, + ACTIONS(4807), 1, anon_sym_RBRACE, + ACTIONS(4809), 1, anon_sym_COMMA, - [61924] = 4, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(4716), 1, - anon_sym_SEMI, - STATE(862), 1, - sym_block, + STATE(1990), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61938] = 2, + [62864] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4718), 3, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4812), 2, anon_sym_RBRACE, - [61948] = 4, - ACTIONS(4329), 1, + anon_sym_COMMA, + [62876] = 4, + ACTIONS(4814), 1, anon_sym_RPAREN, - ACTIONS(4331), 1, + ACTIONS(4816), 1, anon_sym_COMMA, - STATE(2146), 1, - aux_sym_parameters_repeat1, + STATE(1992), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61962] = 4, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(4720), 1, - anon_sym_SEMI, - STATE(902), 1, - sym_block, + [62890] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61976] = 4, - ACTIONS(2476), 1, - anon_sym_PLUS, - ACTIONS(4722), 1, - sym_mutable_specifier, - ACTIONS(4724), 1, - sym_self, + ACTIONS(4819), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62902] = 4, + ACTIONS(4821), 1, + anon_sym_RPAREN, + ACTIONS(4823), 1, + anon_sym_COMMA, + STATE(1992), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61990] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4726), 1, + [62916] = 4, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4825), 1, anon_sym_SEMI, - STATE(455), 1, - sym_declaration_list, + ACTIONS(4827), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62004] = 4, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(4728), 1, - anon_sym_move, - STATE(248), 1, - sym_block, + [62930] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62018] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4730), 1, - anon_sym_SEMI, - ACTIONS(4732), 1, + ACTIONS(4829), 3, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [62940] = 4, + ACTIONS(3936), 1, + anon_sym_GT, + ACTIONS(4831), 1, + anon_sym_COMMA, + STATE(2118), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62032] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4734), 1, - sym_identifier, - STATE(2355), 1, - sym_type_arguments, + [62954] = 4, + ACTIONS(582), 1, + anon_sym_LBRACE, + ACTIONS(4833), 1, + anon_sym_move, + STATE(232), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62046] = 4, - ACTIONS(4087), 1, + [62968] = 4, + ACTIONS(4835), 1, + anon_sym_for, + ACTIONS(4837), 1, + anon_sym_loop, + ACTIONS(4839), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62982] = 4, + ACTIONS(3914), 1, anon_sym_LBRACE, - ACTIONS(4736), 1, + ACTIONS(4841), 1, anon_sym_SEMI, - STATE(476), 1, - sym_block, + STATE(365), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62060] = 4, - ACTIONS(4087), 1, + [62996] = 4, + ACTIONS(3914), 1, anon_sym_LBRACE, - ACTIONS(4738), 1, + ACTIONS(4843), 1, anon_sym_SEMI, - STATE(440), 1, - sym_block, + STATE(368), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62074] = 4, - ACTIONS(388), 1, - anon_sym_RPAREN, - ACTIONS(4740), 1, + [63010] = 4, + ACTIONS(4845), 1, + anon_sym_RBRACE, + ACTIONS(4847), 1, anon_sym_COMMA, - STATE(1974), 1, - aux_sym_arguments_repeat1, + STATE(2071), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62088] = 4, - ACTIONS(4091), 1, + [63024] = 4, + ACTIONS(3914), 1, anon_sym_LBRACE, - ACTIONS(4742), 1, + ACTIONS(4849), 1, anon_sym_SEMI, - STATE(915), 1, - sym_block, + STATE(380), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62102] = 4, - ACTIONS(2383), 1, - anon_sym_RPAREN, - ACTIONS(4744), 1, - anon_sym_COMMA, - STATE(1854), 1, - aux_sym_tuple_pattern_repeat1, + [63038] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62116] = 4, - ACTIONS(3325), 1, - anon_sym_RPAREN, - ACTIONS(4746), 1, + ACTIONS(4851), 2, anon_sym_COMMA, - STATE(1974), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62130] = 4, - ACTIONS(2371), 1, - anon_sym_RBRACK, - ACTIONS(4749), 1, + anon_sym_GT, + [63050] = 4, + ACTIONS(4853), 1, anon_sym_COMMA, - STATE(1854), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4856), 1, + anon_sym_GT, + STATE(2005), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62144] = 4, - ACTIONS(4751), 1, - anon_sym_for, - ACTIONS(4753), 1, - anon_sym_loop, - ACTIONS(4755), 1, - anon_sym_while, + [63064] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62158] = 4, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(4757), 1, + ACTIONS(4858), 3, anon_sym_SEMI, - STATE(931), 1, - sym_declaration_list, + anon_sym_RBRACE, + anon_sym_COMMA, + [63074] = 4, + ACTIONS(3928), 1, + anon_sym_GT, + ACTIONS(4860), 1, + anon_sym_COMMA, + STATE(2118), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62172] = 2, + [63088] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4759), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4862), 3, + anon_sym_EQ, anon_sym_COMMA, - [62182] = 3, - ACTIONS(4155), 1, + anon_sym_GT, + [63098] = 3, + ACTIONS(4237), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(3501), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [62194] = 4, - ACTIONS(3806), 1, + [63110] = 4, + ACTIONS(2419), 1, + anon_sym_RBRACK, + ACTIONS(4864), 1, + anon_sym_COMMA, + STATE(1895), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63124] = 4, + ACTIONS(3914), 1, anon_sym_LBRACE, - ACTIONS(4761), 1, + ACTIONS(4866), 1, anon_sym_SEMI, - STATE(935), 1, + STATE(312), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62208] = 2, + [63138] = 4, + ACTIONS(4868), 1, + anon_sym_COMMA, + ACTIONS(4871), 1, + anon_sym_GT, + STATE(2012), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4763), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [62218] = 4, - ACTIONS(3171), 1, - anon_sym_RPAREN, - ACTIONS(4765), 1, - anon_sym_COMMA, - STATE(2148), 1, - aux_sym_meta_arguments_repeat1, + [63152] = 3, + ACTIONS(2501), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62232] = 4, - ACTIONS(4091), 1, + ACTIONS(4871), 2, + anon_sym_COMMA, + anon_sym_GT, + [63164] = 4, + ACTIONS(2642), 1, anon_sym_LBRACE, - ACTIONS(4767), 1, - anon_sym_SEMI, - STATE(947), 1, - sym_block, + ACTIONS(4873), 1, + anon_sym_COLON_COLON, + STATE(1127), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62246] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4734), 1, - sym_identifier, - STATE(2358), 1, - sym_type_arguments, + [63178] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62260] = 4, - ACTIONS(3293), 1, - anon_sym_RBRACK, - ACTIONS(4769), 1, + ACTIONS(4875), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1985), 1, - aux_sym_array_expression_repeat1, + [63188] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62274] = 4, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4772), 1, - anon_sym_SEMI, - STATE(2541), 1, - sym_where_clause, + ACTIONS(4871), 2, + anon_sym_COMMA, + anon_sym_GT, + [63200] = 4, + ACTIONS(3347), 1, + anon_sym_LBRACE, + ACTIONS(4877), 1, + sym_identifier, + STATE(1935), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62288] = 4, - ACTIONS(4087), 1, - anon_sym_LBRACE, - ACTIONS(4774), 1, - anon_sym_SEMI, - STATE(459), 1, - sym_block, + [63214] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62302] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4776), 1, - anon_sym_as, - ACTIONS(4778), 1, + ACTIONS(4879), 2, + anon_sym_COMMA, anon_sym_GT, + [63226] = 4, + ACTIONS(4881), 1, + anon_sym_RBRACE, + ACTIONS(4883), 1, + anon_sym_COMMA, + STATE(2019), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62316] = 4, - ACTIONS(2618), 1, - anon_sym_LBRACE, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - STATE(1095), 1, - sym_field_initializer_list, + [63240] = 4, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(4886), 1, + sym_identifier, + STATE(2475), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62330] = 4, - ACTIONS(3806), 1, + [63254] = 4, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(4888), 1, + anon_sym_EQ_GT, + ACTIONS(4890), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63268] = 4, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(4782), 1, + ACTIONS(4892), 1, anon_sym_SEMI, - STATE(1025), 1, + STATE(1059), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62344] = 3, - ACTIONS(4786), 1, - anon_sym_COLON, + [63282] = 4, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(4886), 1, + sym_identifier, + STATE(2478), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4784), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62356] = 4, - ACTIONS(4788), 1, + [63296] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4894), 2, anon_sym_RBRACE, - ACTIONS(4790), 1, anon_sym_COMMA, - STATE(2129), 1, - aux_sym_struct_pattern_repeat1, + [63308] = 4, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4896), 1, + anon_sym_as, + ACTIONS(4898), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62370] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4792), 1, - anon_sym_SEMI, - ACTIONS(4794), 1, - anon_sym_EQ, + [63322] = 3, + ACTIONS(4902), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62384] = 4, - ACTIONS(4796), 1, + ACTIONS(4900), 2, anon_sym_RBRACE, - ACTIONS(4798), 1, anon_sym_COMMA, - STATE(1994), 1, - aux_sym_field_initializer_list_repeat1, + [63334] = 4, + ACTIONS(4155), 1, + anon_sym_LBRACE, + ACTIONS(4904), 1, + anon_sym_SEMI, + STATE(395), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62398] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4801), 1, - anon_sym_move, - STATE(1146), 1, - sym_block, + [63348] = 4, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(4906), 1, + sym_identifier, + STATE(2475), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62412] = 4, - ACTIONS(4087), 1, - anon_sym_LBRACE, - ACTIONS(4803), 1, + [63362] = 4, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(4908), 1, anon_sym_SEMI, - STATE(444), 1, - sym_block, + ACTIONS(4910), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62426] = 2, + [63376] = 4, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(4906), 1, + sym_identifier, + STATE(2478), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4805), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + [63390] = 4, + ACTIONS(4507), 1, anon_sym_COMMA, - [62436] = 4, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(4807), 1, - anon_sym_EQ, - STATE(2550), 1, - sym_type_parameters, + ACTIONS(4912), 1, + anon_sym_PIPE, + STATE(1958), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62450] = 4, - ACTIONS(4375), 1, + [63404] = 4, + ACTIONS(796), 1, + anon_sym_RPAREN, + ACTIONS(4914), 1, anon_sym_COMMA, - ACTIONS(4377), 1, - anon_sym_GT, - STATE(2125), 1, - aux_sym_type_arguments_repeat1, + STATE(2115), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62464] = 4, - ACTIONS(4809), 1, - anon_sym_RPAREN, - ACTIONS(4811), 1, - anon_sym_COMMA, - STATE(1982), 1, - aux_sym_meta_arguments_repeat1, + [63418] = 3, + ACTIONS(3233), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62478] = 4, - ACTIONS(3455), 1, + ACTIONS(4313), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63430] = 4, + ACTIONS(2612), 1, anon_sym_LT2, - ACTIONS(4813), 1, + ACTIONS(4916), 1, sym_identifier, - STATE(2355), 1, + STATE(1233), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62492] = 4, - ACTIONS(2580), 1, + [63444] = 4, + ACTIONS(2612), 1, anon_sym_LT2, - ACTIONS(4815), 1, + ACTIONS(4918), 1, sym_identifier, - STATE(1219), 1, + STATE(828), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62506] = 4, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(4817), 1, - anon_sym_SEMI, - STATE(962), 1, - sym_block, + [63458] = 4, + ACTIONS(4920), 1, + anon_sym_RBRACE, + ACTIONS(4922), 1, + anon_sym_COMMA, + STATE(2116), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62520] = 4, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4819), 1, - anon_sym_SEMI, - STATE(2388), 1, - sym_where_clause, + [63472] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62534] = 4, - ACTIONS(3455), 1, + ACTIONS(4556), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63484] = 4, + ACTIONS(3503), 1, anon_sym_LT2, - ACTIONS(4813), 1, + ACTIONS(4924), 1, sym_identifier, - STATE(2358), 1, + STATE(2475), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62548] = 4, - ACTIONS(4821), 1, - anon_sym_RBRACE, - ACTIONS(4823), 1, - anon_sym_COMMA, - STATE(2122), 1, - aux_sym_struct_pattern_repeat1, + [63498] = 4, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(4924), 1, + sym_identifier, + STATE(2478), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62562] = 4, - ACTIONS(2532), 1, - anon_sym_RPAREN, - ACTIONS(4825), 1, - anon_sym_COMMA, - STATE(2031), 1, - aux_sym_tuple_type_repeat1, + [63512] = 4, + ACTIONS(2612), 1, + anon_sym_LT2, + ACTIONS(4916), 1, + sym_identifier, + STATE(1229), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62576] = 4, - ACTIONS(2580), 1, - anon_sym_LT2, - ACTIONS(4815), 1, + [63526] = 4, + ACTIONS(4926), 1, sym_identifier, - STATE(1213), 1, - sym_type_arguments, + ACTIONS(4928), 1, + anon_sym_ref, + ACTIONS(4930), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62590] = 2, + [63540] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4827), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [62600] = 4, - ACTIONS(4087), 1, + ACTIONS(4558), 3, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4829), 1, + anon_sym_COMMA, + [63550] = 4, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4932), 1, anon_sym_SEMI, - STATE(490), 1, - sym_block, + STATE(2552), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62614] = 4, - ACTIONS(4831), 1, + [63564] = 4, + ACTIONS(3932), 1, + anon_sym_RBRACE, + ACTIONS(4934), 1, anon_sym_COMMA, - ACTIONS(4833), 1, - anon_sym_GT, - STATE(2109), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2047), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62628] = 4, - ACTIONS(4835), 1, + [63578] = 3, + ACTIONS(4938), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4936), 2, anon_sym_RBRACE, - ACTIONS(4837), 1, anon_sym_COMMA, - STATE(2012), 1, - aux_sym_use_list_repeat1, + [63590] = 4, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4940), 1, + anon_sym_SEMI, + STATE(2382), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62642] = 4, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(4840), 1, - anon_sym_SEMI, - STATE(990), 1, - sym_block, + [63604] = 4, + ACTIONS(4942), 1, + anon_sym_RBRACE, + ACTIONS(4944), 1, + anon_sym_COMMA, + STATE(2047), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62656] = 4, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(4842), 1, - anon_sym_SEMI, - STATE(997), 1, - sym_declaration_list, + [63618] = 4, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_await, + ACTIONS(4951), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62670] = 2, + [63632] = 4, + ACTIONS(2612), 1, + anon_sym_LT2, + ACTIONS(4918), 1, + sym_identifier, + STATE(825), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4844), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [62680] = 2, + [63646] = 4, + ACTIONS(4953), 1, + anon_sym_for, + ACTIONS(4955), 1, + anon_sym_loop, + ACTIONS(4957), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63660] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2401), 3, + ACTIONS(4959), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [62690] = 4, - ACTIONS(3888), 1, - anon_sym_GT, - ACTIONS(4846), 1, - anon_sym_COMMA, - STATE(2094), 1, - aux_sym_type_parameters_repeat1, + [63670] = 4, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(4961), 1, + sym_identifier, + STATE(2475), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62704] = 4, - ACTIONS(3892), 1, - anon_sym_GT, - ACTIONS(4848), 1, - anon_sym_COMMA, - STATE(2094), 1, - aux_sym_type_parameters_repeat1, + [63684] = 4, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(4961), 1, + sym_identifier, + STATE(2478), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63698] = 4, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(4963), 1, + sym_identifier, + STATE(2478), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62718] = 2, + [63712] = 4, + ACTIONS(386), 1, + anon_sym_RPAREN, + ACTIONS(4965), 1, + anon_sym_COMMA, + STATE(2056), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4850), 3, - anon_sym_EQ, + [63726] = 4, + ACTIONS(3271), 1, + anon_sym_RPAREN, + ACTIONS(4967), 1, anon_sym_COMMA, - anon_sym_GT, - [62728] = 2, + STATE(2056), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4852), 3, + [63740] = 4, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4970), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62738] = 4, - ACTIONS(3305), 1, - anon_sym_LBRACE, - ACTIONS(4854), 1, - sym_identifier, - STATE(1950), 1, - sym_use_list, + STATE(2500), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62752] = 4, - ACTIONS(3455), 1, + [63754] = 4, + ACTIONS(3503), 1, anon_sym_LT2, - ACTIONS(4559), 1, + ACTIONS(4963), 1, sym_identifier, - STATE(2355), 1, + STATE(2475), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62766] = 4, - ACTIONS(3806), 1, + [63768] = 4, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(4856), 1, + ACTIONS(4972), 1, anon_sym_SEMI, - STATE(1012), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62780] = 4, - ACTIONS(3896), 1, - anon_sym_RBRACE, - ACTIONS(4858), 1, - anon_sym_COMMA, - STATE(1940), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1039), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62794] = 3, - ACTIONS(4081), 1, + [63782] = 4, + ACTIONS(4129), 1, anon_sym_PLUS, + ACTIONS(4974), 1, + anon_sym_SEMI, + ACTIONS(4976), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4860), 2, - anon_sym_COMMA, - anon_sym_GT, - [62806] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [63796] = 4, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(4978), 1, + anon_sym_SEMI, + STATE(847), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4561), 2, + [63810] = 4, + ACTIONS(4342), 1, anon_sym_COMMA, + ACTIONS(4344), 1, anon_sym_GT, - [62818] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4862), 1, - anon_sym_SEMI, - STATE(398), 1, - sym_declaration_list, + STATE(2133), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62832] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4864), 1, + [63824] = 4, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(4980), 1, anon_sym_SEMI, - ACTIONS(4866), 1, - anon_sym_RBRACK, + STATE(866), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62846] = 4, - ACTIONS(4081), 1, + [63838] = 4, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4868), 1, + ACTIONS(4982), 1, anon_sym_SEMI, - ACTIONS(4870), 1, + ACTIONS(4984), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62860] = 4, - ACTIONS(4343), 1, - anon_sym_COMMA, - ACTIONS(4345), 1, - anon_sym_GT, - STATE(2101), 1, - aux_sym_type_parameters_repeat1, + [63852] = 4, + ACTIONS(4155), 1, + anon_sym_LBRACE, + ACTIONS(4986), 1, + anon_sym_SEMI, + STATE(490), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62874] = 4, - ACTIONS(4872), 1, - anon_sym_RPAREN, - ACTIONS(4874), 1, - anon_sym_COMMA, - STATE(2031), 1, - aux_sym_tuple_type_repeat1, + [63866] = 4, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(4988), 1, + anon_sym_SEMI, + STATE(929), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62888] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [63880] = 4, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(4990), 1, + anon_sym_SEMI, + STATE(357), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4877), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62900] = 4, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(4879), 1, - anon_sym_EQ_GT, - ACTIONS(4881), 1, - anon_sym_if, + [63894] = 4, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_SEMI, + STATE(942), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62914] = 4, - ACTIONS(4081), 1, + [63908] = 4, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4883), 1, + ACTIONS(4994), 1, anon_sym_SEMI, - ACTIONS(4885), 1, + ACTIONS(4996), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62928] = 2, + [63922] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4887), 3, + ACTIONS(4998), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62938] = 4, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(4889), 1, - anon_sym_SEMI, - STATE(913), 1, - sym_declaration_list, + [63932] = 4, + ACTIONS(3421), 1, + anon_sym_RBRACE, + ACTIONS(5000), 1, + anon_sym_COMMA, + STATE(2083), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62952] = 4, - ACTIONS(2618), 1, - anon_sym_LBRACE, - ACTIONS(4891), 1, - anon_sym_COLON_COLON, - STATE(1095), 1, - sym_field_initializer_list, + [63946] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62966] = 4, - ACTIONS(3870), 1, + ACTIONS(5002), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4893), 1, anon_sym_COMMA, - STATE(1943), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62980] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4895), 1, + [63956] = 4, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, anon_sym_SEMI, - ACTIONS(4897), 1, - anon_sym_EQ, + STATE(962), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62994] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4899), 1, - anon_sym_SEMI, - STATE(315), 1, - sym_declaration_list, + [63970] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63008] = 4, - ACTIONS(3870), 1, + ACTIONS(5006), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4893), 1, anon_sym_COMMA, - STATE(1940), 1, - aux_sym_field_declaration_list_repeat1, + [63980] = 4, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(5008), 1, + anon_sym_SEMI, + STATE(2616), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63022] = 4, - ACTIONS(4901), 1, + [63994] = 4, + ACTIONS(5010), 1, anon_sym_RBRACE, - ACTIONS(4903), 1, + ACTIONS(5012), 1, anon_sym_COMMA, - STATE(2041), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2076), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63036] = 4, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4905), 1, - anon_sym_SEMI, - STATE(2565), 1, - sym_where_clause, + [64008] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63050] = 4, - ACTIONS(3806), 1, + ACTIONS(5015), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [64018] = 4, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(4907), 1, + ACTIONS(5017), 1, anon_sym_SEMI, - STATE(1022), 1, + STATE(1012), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63064] = 3, - ACTIONS(4133), 1, - anon_sym_COLON_COLON, + [64032] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [63076] = 4, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(4909), 1, + ACTIONS(5019), 3, anon_sym_SEMI, - STATE(1044), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63090] = 4, - ACTIONS(4911), 1, - anon_sym_RPAREN, - ACTIONS(4913), 1, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1932), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [64042] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63104] = 4, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5021), 3, anon_sym_SEMI, - STATE(2464), 1, - sym_where_clause, + anon_sym_RBRACE, + anon_sym_COMMA, + [64052] = 4, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(5023), 1, + anon_sym_SEMI, + STATE(1018), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63118] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4917), 1, - sym_identifier, - STATE(2355), 1, - sym_type_arguments, + [64066] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63132] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4919), 1, + ACTIONS(5025), 3, anon_sym_SEMI, - STATE(364), 1, - sym_declaration_list, + anon_sym_RBRACE, + anon_sym_COMMA, + [64076] = 4, + ACTIONS(5027), 1, + anon_sym_RBRACE, + ACTIONS(5029), 1, + anon_sym_COMMA, + STATE(2083), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63146] = 4, - ACTIONS(4091), 1, + [64090] = 4, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(4921), 1, + ACTIONS(5032), 1, anon_sym_SEMI, - STATE(800), 1, + STATE(1075), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63160] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4923), 1, - anon_sym_SEMI, - ACTIONS(4925), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63174] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4927), 1, - anon_sym_SEMI, - ACTIONS(4929), 1, - anon_sym_EQ, + [64104] = 4, + ACTIONS(5034), 1, + anon_sym_RPAREN, + ACTIONS(5036), 1, + anon_sym_COMMA, + STATE(1974), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63188] = 4, - ACTIONS(4931), 1, + [64118] = 4, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(4131), 1, sym_identifier, - ACTIONS(4933), 1, - anon_sym_ref, - ACTIONS(4935), 1, - sym_mutable_specifier, + STATE(2478), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63202] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4937), 1, - anon_sym_SEMI, - STATE(287), 1, - sym_declaration_list, + [64132] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63216] = 4, - ACTIONS(794), 1, + ACTIONS(5038), 3, anon_sym_RPAREN, - ACTIONS(4939), 1, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1928), 1, - aux_sym_parameters_repeat1, + [64142] = 4, + ACTIONS(4119), 1, + anon_sym_RBRACE, + ACTIONS(5040), 1, + anon_sym_COMMA, + STATE(2019), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63230] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, + [64156] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4941), 2, + ACTIONS(5042), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63242] = 4, - ACTIONS(4943), 1, - anon_sym_for, - ACTIONS(4945), 1, - anon_sym_loop, - ACTIONS(4947), 1, - anon_sym_while, + [64166] = 4, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(5044), 1, + anon_sym_SEMI, + STATE(1113), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63256] = 2, + [64180] = 4, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(4131), 1, + sym_identifier, + STATE(2475), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4949), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63266] = 4, - ACTIONS(3806), 1, + [64194] = 4, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(4951), 1, + ACTIONS(5046), 1, anon_sym_SEMI, - STATE(867), 1, + STATE(897), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63280] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [64208] = 4, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(5048), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4535), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63292] = 4, - ACTIONS(3383), 1, - anon_sym_RBRACE, - ACTIONS(4953), 1, - anon_sym_COMMA, - STATE(2012), 1, - aux_sym_use_list_repeat1, + [64222] = 4, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(5050), 1, + anon_sym_SEMI, + STATE(1158), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63306] = 4, - ACTIONS(4955), 1, - sym_identifier, - ACTIONS(4957), 1, - anon_sym_ref, - ACTIONS(4959), 1, - sym_mutable_specifier, + [64236] = 4, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_SEMI, + STATE(1153), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63320] = 2, + [64250] = 4, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(5054), 1, + anon_sym_SEMI, + STATE(1136), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4961), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63330] = 4, - ACTIONS(3876), 1, + [64264] = 4, + ACTIONS(3886), 1, anon_sym_RBRACE, - ACTIONS(4963), 1, + ACTIONS(5056), 1, anon_sym_COMMA, - STATE(1957), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1990), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63344] = 2, + [64278] = 4, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(5058), 1, + sym_identifier, + STATE(2478), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4965), 3, + [64292] = 4, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(5060), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63354] = 2, + ACTIONS(5062), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4967), 3, + [64306] = 4, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(5064), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63364] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4917), 1, - sym_identifier, - STATE(2358), 1, - sym_type_arguments, + STATE(403), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63378] = 2, + [64320] = 4, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(5066), 1, + anon_sym_SEMI, + STATE(1123), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2395), 3, + [64334] = 4, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(5068), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [63388] = 4, - ACTIONS(512), 1, - anon_sym_RBRACK, - ACTIONS(3207), 1, - anon_sym_COMMA, - STATE(1985), 1, - aux_sym_array_expression_repeat1, + STATE(1112), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63402] = 2, + [64348] = 3, + ACTIONS(4334), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4969), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(5070), 2, anon_sym_COMMA, - [63412] = 2, + anon_sym_PIPE, + [64360] = 4, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(5072), 1, + anon_sym_SEMI, + STATE(1106), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4971), 3, - anon_sym_SEMI, + [64374] = 4, + ACTIONS(3858), 1, anon_sym_RBRACE, + ACTIONS(5074), 1, anon_sym_COMMA, - [63422] = 2, + STATE(1989), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4973), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [64388] = 4, + ACTIONS(5070), 1, + anon_sym_PIPE, + ACTIONS(5076), 1, anon_sym_COMMA, - [63432] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_SEMI, - STATE(283), 1, - sym_declaration_list, + STATE(2106), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63446] = 4, - ACTIONS(4081), 1, + [64402] = 4, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(4977), 1, + ACTIONS(5079), 1, anon_sym_SEMI, - ACTIONS(4979), 1, + ACTIONS(5081), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63460] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4981), 3, + [64416] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [63470] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, + STATE(1027), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4983), 2, + [64430] = 4, + ACTIONS(3946), 1, anon_sym_RBRACE, + ACTIONS(5083), 1, anon_sym_COMMA, - [63482] = 3, - ACTIONS(3193), 1, - anon_sym_COLON_COLON, + STATE(2076), 1, + aux_sym_field_initializer_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64444] = 3, + ACTIONS(5087), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4985), 2, + ACTIONS(5085), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64456] = 4, + ACTIONS(792), 1, anon_sym_RPAREN, + ACTIONS(5089), 1, anon_sym_COMMA, - [63494] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4987), 1, - anon_sym_SEMI, - STATE(435), 1, - sym_declaration_list, + STATE(2115), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63508] = 4, - ACTIONS(4989), 1, + [64470] = 4, + ACTIONS(5091), 1, anon_sym_RBRACE, - ACTIONS(4991), 1, + ACTIONS(5093), 1, anon_sym_COMMA, - STATE(2144), 1, + STATE(2166), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63522] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4109), 1, - sym_identifier, - STATE(2355), 1, - sym_type_arguments, + [64484] = 4, + ACTIONS(522), 1, + anon_sym_RBRACK, + ACTIONS(3217), 1, + anon_sym_COMMA, + STATE(1971), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63536] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4109), 1, - sym_identifier, - STATE(2358), 1, - sym_type_arguments, + [64498] = 4, + ACTIONS(3866), 1, + anon_sym_RBRACE, + ACTIONS(5095), 1, + anon_sym_COMMA, + STATE(2047), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63550] = 4, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_SEMI, - STATE(2520), 1, - sym_where_clause, + [64512] = 4, + ACTIONS(4556), 1, + anon_sym_RPAREN, + ACTIONS(5097), 1, + anon_sym_COMMA, + STATE(2115), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63564] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4995), 1, - anon_sym_SEMI, - STATE(465), 1, - sym_declaration_list, + [64526] = 4, + ACTIONS(3858), 1, + anon_sym_RBRACE, + ACTIONS(5074), 1, + anon_sym_COMMA, + STATE(1990), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63578] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, - anon_sym_SEMI, - ACTIONS(4999), 1, - anon_sym_EQ, + [64540] = 4, + ACTIONS(5100), 1, + anon_sym_RPAREN, + ACTIONS(5102), 1, + anon_sym_COMMA, + STATE(1992), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63592] = 3, - ACTIONS(4295), 1, - anon_sym_COLON, + [64554] = 4, + ACTIONS(4607), 1, + anon_sym_GT, + ACTIONS(5104), 1, + anon_sym_COMMA, + STATE(2118), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5001), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [63604] = 4, - ACTIONS(4355), 1, + [64568] = 4, + ACTIONS(4346), 1, anon_sym_RPAREN, - ACTIONS(4357), 1, + ACTIONS(4348), 1, anon_sym_COMMA, - STATE(2147), 1, + STATE(2159), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63618] = 4, - ACTIONS(5001), 1, - anon_sym_PIPE, - ACTIONS(5003), 1, - anon_sym_COMMA, - STATE(2088), 1, - aux_sym_closure_parameters_repeat1, + [64582] = 4, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(5107), 1, + anon_sym_SEMI, + STATE(2379), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63632] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4081), 1, + [64596] = 4, + ACTIONS(4129), 1, anon_sym_PLUS, - STATE(1074), 1, - sym_block, + ACTIONS(5109), 1, + anon_sym_SEMI, + ACTIONS(5111), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63646] = 4, - ACTIONS(4091), 1, + [64610] = 4, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(5006), 1, + ACTIONS(5113), 1, anon_sym_SEMI, - STATE(824), 1, + STATE(874), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63660] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [64624] = 4, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(5115), 1, + anon_sym_SEMI, + STATE(2539), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5008), 2, - anon_sym_COMMA, - anon_sym_GT, - [63672] = 4, - ACTIONS(3848), 1, - anon_sym_RBRACE, - ACTIONS(5010), 1, - anon_sym_COMMA, - STATE(1994), 1, - aux_sym_field_initializer_list_repeat1, + [64638] = 4, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(5117), 1, + anon_sym_SEMI, + ACTIONS(5119), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63686] = 4, - ACTIONS(4381), 1, + [64652] = 4, + ACTIONS(4521), 1, anon_sym_COMMA, - ACTIONS(4383), 1, + ACTIONS(4523), 1, anon_sym_GT, - STATE(2155), 1, + STATE(2150), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63700] = 4, - ACTIONS(4387), 1, - anon_sym_GT, - ACTIONS(5012), 1, - anon_sym_COMMA, - STATE(2094), 1, - aux_sym_type_parameters_repeat1, + [64666] = 4, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(5058), 1, + sym_identifier, + STATE(2475), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63714] = 3, - ACTIONS(4403), 1, - anon_sym_EQ, + [64680] = 4, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(5121), 1, + anon_sym_SEMI, + STATE(1068), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4387), 2, - anon_sym_COMMA, - anon_sym_GT, - [63726] = 4, - ACTIONS(4173), 1, + [64694] = 4, + ACTIONS(388), 1, + anon_sym_RPAREN, + ACTIONS(3265), 1, anon_sym_COMMA, - ACTIONS(4175), 1, - anon_sym_GT, - STATE(2018), 1, - aux_sym_type_parameters_repeat1, + STATE(2056), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63740] = 4, - ACTIONS(2546), 1, + [64708] = 4, + ACTIONS(2580), 1, anon_sym_RPAREN, - ACTIONS(5015), 1, + ACTIONS(5123), 1, anon_sym_COMMA, - STATE(2031), 1, + STATE(2152), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63754] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(5017), 1, + [64722] = 4, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(5125), 1, anon_sym_SEMI, - STATE(280), 1, - sym_declaration_list, + ACTIONS(5127), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63768] = 4, - ACTIONS(3868), 1, + [64736] = 4, + ACTIONS(3904), 1, anon_sym_GT, - ACTIONS(5019), 1, + ACTIONS(5129), 1, anon_sym_COMMA, - STATE(2094), 1, + STATE(2118), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63782] = 4, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(5021), 1, + [64750] = 4, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(5131), 1, anon_sym_SEMI, - STATE(2491), 1, - sym_where_clause, + STATE(435), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63796] = 4, - ACTIONS(3858), 1, + [64764] = 4, + ACTIONS(3906), 1, anon_sym_GT, - ACTIONS(5023), 1, + ACTIONS(5133), 1, anon_sym_COMMA, - STATE(2094), 1, + STATE(2118), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63810] = 3, - ACTIONS(5025), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5027), 2, - anon_sym_default, - anon_sym_union, - [63822] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [64778] = 4, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(5135), 1, + anon_sym_SEMI, + STATE(1044), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5029), 2, - anon_sym_COMMA, - anon_sym_GT, - [63834] = 4, - ACTIONS(3806), 1, + [64792] = 4, + ACTIONS(3914), 1, anon_sym_LBRACE, - ACTIONS(5031), 1, + ACTIONS(5137), 1, anon_sym_SEMI, - STATE(1010), 1, + STATE(429), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63848] = 4, - ACTIONS(4091), 1, + [64806] = 4, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(5033), 1, + ACTIONS(5139), 1, anon_sym_SEMI, - STATE(995), 1, - sym_block, + STATE(862), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63862] = 3, - ACTIONS(5037), 1, - anon_sym_COLON, + [64820] = 4, + ACTIONS(3910), 1, + anon_sym_RBRACE, + ACTIONS(5141), 1, + anon_sym_COMMA, + STATE(2097), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5035), 2, + [64834] = 4, + ACTIONS(3910), 1, anon_sym_RBRACE, + ACTIONS(5141), 1, anon_sym_COMMA, - [63874] = 4, - ACTIONS(4081), 1, + STATE(1990), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64848] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5143), 2, + anon_sym_COMMA, + anon_sym_GT, + [64860] = 4, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(5039), 1, + ACTIONS(5145), 1, anon_sym_SEMI, - ACTIONS(5041), 1, + ACTIONS(5147), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63888] = 4, - ACTIONS(4087), 1, - anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_SEMI, - STATE(381), 1, - sym_block, + [64874] = 3, + ACTIONS(4439), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63902] = 4, - ACTIONS(5045), 1, + ACTIONS(4607), 2, anon_sym_COMMA, - ACTIONS(5047), 1, anon_sym_GT, - STATE(1910), 1, - aux_sym_for_lifetimes_repeat1, + [64886] = 4, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(5149), 1, + anon_sym_SEMI, + STATE(996), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63916] = 4, - ACTIONS(4087), 1, - anon_sym_LBRACE, - ACTIONS(5049), 1, - anon_sym_SEMI, - STATE(340), 1, - sym_block, + [64900] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63930] = 4, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5151), 2, + anon_sym_COMMA, anon_sym_GT, - STATE(2223), 1, - sym_lifetime, + [64912] = 4, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(5153), 1, + anon_sym_SEMI, + STATE(985), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63944] = 4, - ACTIONS(384), 1, - anon_sym_RPAREN, - ACTIONS(3219), 1, + [64926] = 4, + ACTIONS(5155), 1, anon_sym_COMMA, - STATE(1974), 1, - aux_sym_arguments_repeat1, + ACTIONS(5157), 1, + anon_sym_GT, + STATE(2005), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63958] = 4, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(5051), 1, - anon_sym_SEMI, - STATE(979), 1, - sym_declaration_list, + [64940] = 4, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + ACTIONS(5157), 1, + anon_sym_GT, + STATE(2373), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63972] = 4, - ACTIONS(4081), 1, + [64954] = 4, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(5053), 1, + ACTIONS(5159), 1, anon_sym_SEMI, - ACTIONS(5055), 1, + ACTIONS(5161), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63986] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [64968] = 4, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(5163), 1, + sym_identifier, + STATE(2478), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4872), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63998] = 4, - ACTIONS(5057), 1, + [64982] = 4, + ACTIONS(5165), 1, anon_sym_RBRACE, - ACTIONS(5059), 1, + ACTIONS(5167), 1, anon_sym_COMMA, - STATE(2119), 1, + STATE(2138), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64012] = 4, - ACTIONS(3850), 1, - anon_sym_RBRACE, - ACTIONS(5061), 1, + [64996] = 4, + ACTIONS(928), 1, + anon_sym_GT, + ACTIONS(5169), 1, anon_sym_COMMA, - STATE(2024), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2012), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64026] = 4, - ACTIONS(3828), 1, + [65010] = 4, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(5063), 1, + ACTIONS(5171), 1, anon_sym_SEMI, - STATE(2567), 1, + STATE(2599), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64040] = 4, - ACTIONS(3850), 1, - anon_sym_RBRACE, - ACTIONS(5061), 1, + [65024] = 4, + ACTIONS(5173), 1, + anon_sym_RPAREN, + ACTIONS(5175), 1, anon_sym_COMMA, - STATE(1940), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2152), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64054] = 4, - ACTIONS(5065), 1, + [65038] = 4, + ACTIONS(3503), 1, + anon_sym_LT2, + ACTIONS(5163), 1, sym_identifier, - ACTIONS(5067), 1, - anon_sym_ref, - ACTIONS(5069), 1, - sym_mutable_specifier, + STATE(2475), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64068] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, + [65052] = 4, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(5178), 1, anon_sym_SEMI, - ACTIONS(5073), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64082] = 4, - ACTIONS(4055), 1, - anon_sym_RBRACE, - ACTIONS(5075), 1, - anon_sym_COMMA, - STATE(1911), 1, - aux_sym_struct_pattern_repeat1, + STATE(974), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64096] = 4, - ACTIONS(4081), 1, + [65066] = 3, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(5077), 1, - anon_sym_SEMI, - ACTIONS(5079), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64110] = 4, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - anon_sym_SEMI, - STATE(955), 1, - sym_declaration_list, + ACTIONS(5173), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65078] = 4, + ACTIONS(790), 1, + anon_sym_RPAREN, + ACTIONS(4431), 1, + anon_sym_COMMA, + STATE(2111), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64124] = 4, + [65092] = 4, ACTIONS(926), 1, anon_sym_GT, - ACTIONS(5083), 1, + ACTIONS(5180), 1, anon_sym_COMMA, - STATE(1898), 1, + STATE(2012), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64138] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3772), 1, - anon_sym_LBRACE, - STATE(1386), 1, - sym_type_arguments, + [65106] = 4, + ACTIONS(4093), 1, + anon_sym_RBRACE, + ACTIONS(5182), 1, + anon_sym_COMMA, + STATE(2019), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64152] = 4, - ACTIONS(3806), 1, + [65120] = 4, + ACTIONS(790), 1, + anon_sym_RPAREN, + ACTIONS(4431), 1, + anon_sym_COMMA, + STATE(2115), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65134] = 4, + ACTIONS(3894), 1, anon_sym_LBRACE, - ACTIONS(5085), 1, + ACTIONS(5184), 1, anon_sym_SEMI, - STATE(858), 1, + STATE(928), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64166] = 3, - ACTIONS(5089), 1, - anon_sym_EQ, + [65148] = 3, + ACTIONS(5188), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5087), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64178] = 4, - ACTIONS(4067), 1, + ACTIONS(5186), 2, anon_sym_RBRACE, - ACTIONS(5091), 1, anon_sym_COMMA, - STATE(1911), 1, - aux_sym_struct_pattern_repeat1, + [65160] = 3, + ACTIONS(5192), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64192] = 4, - ACTIONS(3808), 1, + ACTIONS(5190), 2, anon_sym_RBRACE, - ACTIONS(5093), 1, anon_sym_COMMA, - STATE(1957), 1, + [65172] = 4, + ACTIONS(3916), 1, + anon_sym_RBRACE, + ACTIONS(5194), 1, + anon_sym_COMMA, + STATE(2047), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64206] = 4, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(5095), 1, - anon_sym_SEMI, - STATE(941), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64220] = 3, - ACTIONS(5099), 1, - anon_sym_COLON, + [65186] = 4, + ACTIONS(3926), 1, + anon_sym_RBRACE, + ACTIONS(5196), 1, + anon_sym_COMMA, + STATE(2114), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5097), 2, + [65200] = 4, + ACTIONS(3916), 1, anon_sym_RBRACE, + ACTIONS(5194), 1, anon_sym_COMMA, - [64232] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + STATE(2044), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5101), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64244] = 4, - ACTIONS(3808), 1, + [65214] = 4, + ACTIONS(3926), 1, anon_sym_RBRACE, - ACTIONS(5093), 1, + ACTIONS(5196), 1, anon_sym_COMMA, - STATE(1948), 1, + STATE(2047), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64258] = 4, - ACTIONS(3828), 1, + [65228] = 4, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(5198), 1, + anon_sym_SEMI, + STATE(405), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65242] = 4, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(5103), 1, + ACTIONS(5200), 1, anon_sym_SEMI, - STATE(2559), 1, + STATE(2587), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64272] = 2, + [65256] = 4, + ACTIONS(2457), 1, + anon_sym_RPAREN, + ACTIONS(5202), 1, + anon_sym_COMMA, + STATE(1895), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65270] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5105), 3, + ACTIONS(5204), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, - [64282] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5107), 1, + [65280] = 4, + ACTIONS(4155), 1, + anon_sym_LBRACE, + ACTIONS(5206), 1, anon_sym_SEMI, - ACTIONS(5109), 1, - anon_sym_EQ, + STATE(423), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64296] = 2, + [65294] = 4, + ACTIONS(786), 1, + anon_sym_RPAREN, + ACTIONS(4406), 1, + anon_sym_COMMA, + STATE(2115), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5111), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [64306] = 4, - ACTIONS(5113), 1, + [65308] = 4, + ACTIONS(786), 1, anon_sym_RPAREN, - ACTIONS(5115), 1, + ACTIONS(4406), 1, anon_sym_COMMA, - STATE(1932), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2032), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64320] = 4, - ACTIONS(4087), 1, - anon_sym_LBRACE, - ACTIONS(5117), 1, - anon_sym_SEMI, - STATE(339), 1, - sym_block, + [65322] = 3, + ACTIONS(3507), 1, + anon_sym_LPAREN, + STATE(1727), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64334] = 4, - ACTIONS(2381), 1, + [65333] = 3, + ACTIONS(3640), 1, + anon_sym_COLON_COLON, + ACTIONS(5208), 1, anon_sym_RPAREN, - ACTIONS(5119), 1, - anon_sym_COMMA, - STATE(1854), 1, - aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64348] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [65344] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5121), 2, + ACTIONS(4209), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [64360] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(5123), 1, - sym_identifier, - STATE(2355), 1, - sym_type_arguments, + [65353] = 3, + ACTIONS(5210), 1, + anon_sym_SEMI, + ACTIONS(5212), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64374] = 4, - ACTIONS(3810), 1, - anon_sym_RBRACE, - ACTIONS(5125), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_enum_variant_list_repeat2, + [65364] = 3, + ACTIONS(3507), 1, + anon_sym_LPAREN, + STATE(1414), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64388] = 4, - ACTIONS(3810), 1, - anon_sym_RBRACE, - ACTIONS(5125), 1, - anon_sym_COMMA, - STATE(2065), 1, - aux_sym_enum_variant_list_repeat2, + [65375] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64402] = 4, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(4287), 1, + ACTIONS(5214), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1928), 1, - aux_sym_parameters_repeat1, + [65384] = 3, + ACTIONS(5216), 1, + anon_sym_SEMI, + ACTIONS(5218), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64416] = 4, - ACTIONS(786), 1, - anon_sym_RPAREN, - ACTIONS(4283), 1, - anon_sym_COMMA, - STATE(1928), 1, - aux_sym_parameters_repeat1, + [65395] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64430] = 4, - ACTIONS(5127), 1, - anon_sym_RPAREN, - ACTIONS(5129), 1, - anon_sym_COMMA, - STATE(2148), 1, - aux_sym_meta_arguments_repeat1, + ACTIONS(5220), 2, + sym_identifier, + sym_metavariable, + [65404] = 3, + ACTIONS(5216), 1, + anon_sym_SEMI, + ACTIONS(5222), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64444] = 4, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(4287), 1, - anon_sym_COMMA, - STATE(1924), 1, - aux_sym_parameters_repeat1, + [65415] = 3, + ACTIONS(3856), 1, + anon_sym_LBRACE, + STATE(952), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64458] = 4, - ACTIONS(786), 1, - anon_sym_RPAREN, - ACTIONS(4283), 1, - anon_sym_COMMA, - STATE(2056), 1, - aux_sym_parameters_repeat1, + [65426] = 3, + ACTIONS(3856), 1, + anon_sym_LBRACE, + STATE(948), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64472] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(5123), 1, - sym_identifier, - STATE(2358), 1, - sym_type_arguments, + [65437] = 3, + ACTIONS(4193), 1, + anon_sym_LBRACE, + STATE(940), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64486] = 4, - ACTIONS(4091), 1, + [65448] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, - anon_sym_SEMI, - STATE(927), 1, + STATE(149), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64500] = 3, - ACTIONS(4107), 1, - anon_sym_COLON_COLON, + [65459] = 3, + ACTIONS(5224), 1, + sym_identifier, + ACTIONS(5226), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [64512] = 2, + [65470] = 3, + ACTIONS(2982), 1, + anon_sym_COLON, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5134), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64522] = 4, - ACTIONS(914), 1, - anon_sym_GT, - ACTIONS(5136), 1, - anon_sym_COMMA, - STATE(1898), 1, - aux_sym_type_arguments_repeat1, + [65481] = 3, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(930), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64536] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5138), 1, + [65492] = 3, + ACTIONS(5216), 1, anon_sym_SEMI, - ACTIONS(5140), 1, - anon_sym_RBRACK, + ACTIONS(5228), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64550] = 4, - ACTIONS(4087), 1, + [65503] = 3, + ACTIONS(3856), 1, anon_sym_LBRACE, - ACTIONS(5142), 1, - anon_sym_SEMI, - STATE(412), 1, + STATE(906), 1, + sym_field_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65514] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(137), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64564] = 3, - ACTIONS(5144), 1, + [65525] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(5230), 1, anon_sym_SEMI, - ACTIONS(5146), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64575] = 3, - ACTIONS(5148), 1, - sym_identifier, - ACTIONS(5150), 1, - sym_mutable_specifier, + [65536] = 3, + ACTIONS(5216), 1, + anon_sym_SEMI, + ACTIONS(5232), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64586] = 3, - ACTIONS(5152), 1, - anon_sym_SEMI, - ACTIONS(5154), 1, - anon_sym_as, + [65547] = 3, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(895), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64597] = 3, - ACTIONS(3862), 1, + [65558] = 3, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(893), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65569] = 3, + ACTIONS(3856), 1, anon_sym_LBRACE, - STATE(898), 1, + STATE(890), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64608] = 2, + [65580] = 3, + ACTIONS(4643), 1, + sym_identifier, + ACTIONS(4647), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5156), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64617] = 3, - ACTIONS(3796), 1, - anon_sym_LBRACE, - STATE(375), 1, - sym_declaration_list, + [65591] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64628] = 3, - ACTIONS(2329), 1, + ACTIONS(5234), 2, + sym_identifier, + sym_metavariable, + [65600] = 3, + ACTIONS(2361), 1, anon_sym_SQUOTE, - STATE(2011), 1, + STATE(1928), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64639] = 3, - ACTIONS(5144), 1, - anon_sym_SEMI, - ACTIONS(5158), 1, - anon_sym_RBRACE, + [65611] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5236), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64650] = 2, + [65622] = 3, + ACTIONS(4123), 1, + anon_sym_COLON_COLON, + ACTIONS(5238), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5160), 2, - sym_identifier, - sym_metavariable, - [64659] = 3, - ACTIONS(5144), 1, - anon_sym_SEMI, - ACTIONS(5162), 1, - anon_sym_RBRACE, + [65633] = 3, + ACTIONS(4087), 1, + anon_sym_COLON_COLON, + ACTIONS(5238), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64670] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(144), 1, - sym_block, + [65644] = 3, + ACTIONS(4079), 1, + anon_sym_COLON_COLON, + ACTIONS(5238), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64681] = 3, - ACTIONS(3862), 1, - anon_sym_LBRACE, - STATE(882), 1, - sym_field_declaration_list, + [65655] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64692] = 3, - ACTIONS(4179), 1, - anon_sym_LBRACE, - STATE(877), 1, - sym_enum_variant_list, + ACTIONS(4607), 2, + anon_sym_COMMA, + anon_sym_GT, + [65664] = 3, + ACTIONS(3640), 1, + anon_sym_COLON_COLON, + ACTIONS(5240), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64703] = 3, - ACTIONS(5164), 1, - sym_identifier, - ACTIONS(5166), 1, - sym_mutable_specifier, + [65675] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5242), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64714] = 3, - ACTIONS(3806), 1, - anon_sym_LBRACE, - STATE(859), 1, - sym_declaration_list, + [65686] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5244), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64725] = 3, - ACTIONS(3862), 1, - anon_sym_LBRACE, - STATE(847), 1, - sym_field_declaration_list, + [65697] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5246), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64736] = 3, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(2223), 1, - sym_lifetime, + [65708] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5248), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64747] = 3, - ACTIONS(4299), 1, + [65719] = 3, + ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(5168), 1, + ACTIONS(5250), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64758] = 2, + [65730] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5252), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5170), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64767] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5172), 1, + [65741] = 3, + ACTIONS(5216), 1, anon_sym_SEMI, + ACTIONS(5254), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64778] = 3, - ACTIONS(3806), 1, - anon_sym_LBRACE, - STATE(839), 1, - sym_declaration_list, + [65752] = 3, + ACTIONS(5216), 1, + anon_sym_SEMI, + ACTIONS(5256), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64789] = 3, - ACTIONS(3806), 1, + [65763] = 3, + ACTIONS(3914), 1, anon_sym_LBRACE, - STATE(805), 1, + STATE(474), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64800] = 3, - ACTIONS(3862), 1, - anon_sym_LBRACE, - STATE(826), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64811] = 3, - ACTIONS(5065), 1, - sym_identifier, - ACTIONS(5069), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64822] = 3, - ACTIONS(3806), 1, + [65774] = 3, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(969), 1, + STATE(1033), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64833] = 3, - ACTIONS(4081), 1, + [65785] = 3, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(5174), 1, + ACTIONS(5258), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64844] = 2, + [65796] = 3, + ACTIONS(2604), 1, + anon_sym_LPAREN, + STATE(810), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4535), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64853] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5176), 1, - anon_sym_SEMI, + [65807] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64864] = 3, - ACTIONS(4051), 1, - anon_sym_COLON_COLON, - ACTIONS(5178), 1, - anon_sym_RPAREN, + ACTIONS(5260), 2, + sym_identifier, + sym_metavariable, + [65816] = 3, + ACTIONS(4053), 1, + anon_sym_RBRACE, + ACTIONS(5216), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64875] = 3, - ACTIONS(3806), 1, + [65827] = 3, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(984), 1, + STATE(1048), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64886] = 3, - ACTIONS(3806), 1, + [65838] = 3, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(985), 1, + STATE(1052), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64897] = 3, - ACTIONS(4045), 1, - anon_sym_COLON_COLON, - ACTIONS(5178), 1, - anon_sym_RPAREN, + [65849] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5262), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64908] = 3, - ACTIONS(4043), 1, - anon_sym_COLON_COLON, - ACTIONS(5178), 1, + [65860] = 3, + ACTIONS(4055), 1, anon_sym_RPAREN, + ACTIONS(5216), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64919] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5180), 1, - anon_sym_EQ, + [65871] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64930] = 3, - ACTIONS(3590), 1, - anon_sym_COLON_COLON, - ACTIONS(5182), 1, + ACTIONS(4677), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [65880] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2447), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64941] = 3, - ACTIONS(4299), 1, + [65891] = 3, + ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(5184), 1, + ACTIONS(5264), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64952] = 3, - ACTIONS(2572), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym_parameters, + [65902] = 3, + ACTIONS(5266), 1, + anon_sym_SEMI, + ACTIONS(5268), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64963] = 3, - ACTIONS(4179), 1, + [65913] = 3, + ACTIONS(4193), 1, anon_sym_LBRACE, - STATE(1016), 1, + STATE(1072), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64974] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5186), 1, - anon_sym_EQ, + [65924] = 3, + ACTIONS(4099), 1, + anon_sym_RBRACE, + ACTIONS(5216), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64985] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5188), 1, - anon_sym_EQ, + [65935] = 3, + ACTIONS(3848), 1, + anon_sym_LBRACE, + STATE(390), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64996] = 3, - ACTIONS(3862), 1, + [65946] = 3, + ACTIONS(3856), 1, anon_sym_LBRACE, - STATE(1031), 1, + STATE(1077), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65007] = 3, - ACTIONS(4081), 1, + [65957] = 3, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(5190), 1, + ACTIONS(5270), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65018] = 3, - ACTIONS(3862), 1, + [65968] = 3, + ACTIONS(3856), 1, anon_sym_LBRACE, - STATE(1034), 1, + STATE(1079), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65029] = 3, - ACTIONS(3806), 1, + [65979] = 3, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(1036), 1, + STATE(1080), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65040] = 3, - ACTIONS(4179), 1, + [65990] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(848), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65051] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5192), 1, - anon_sym_in, + STATE(2448), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65062] = 3, - ACTIONS(3983), 1, - anon_sym_RBRACE, - ACTIONS(5144), 1, - anon_sym_SEMI, + [66001] = 3, + ACTIONS(2880), 1, + anon_sym_COLON, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65073] = 3, - ACTIONS(4299), 1, + [66012] = 3, + ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(5194), 1, + ACTIONS(5272), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65084] = 3, - ACTIONS(4037), 1, - anon_sym_RBRACE, - ACTIONS(5144), 1, - anon_sym_SEMI, + [66023] = 3, + ACTIONS(2876), 1, + anon_sym_COLON, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65095] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, - anon_sym_in, + [66034] = 3, + ACTIONS(3848), 1, + anon_sym_LBRACE, + STATE(385), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65106] = 3, - ACTIONS(3796), 1, - anon_sym_LBRACE, - STATE(474), 1, - sym_declaration_list, + [66045] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5274), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65117] = 2, + [66056] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5198), 2, + ACTIONS(5276), 2, sym_identifier, sym_metavariable, - [65126] = 3, - ACTIONS(3796), 1, + [66065] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(472), 1, - sym_declaration_list, + STATE(2555), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65137] = 3, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1405), 1, - sym_parameters, + [66076] = 3, + ACTIONS(5278), 1, + sym_identifier, + ACTIONS(5280), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65148] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5200), 1, - anon_sym_EQ, + [66087] = 3, + ACTIONS(3848), 1, + anon_sym_LBRACE, + STATE(266), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65159] = 2, + [66098] = 3, + ACTIONS(4193), 1, + anon_sym_LBRACE, + STATE(879), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5202), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65168] = 3, - ACTIONS(284), 1, + [66109] = 3, + ACTIONS(4161), 1, anon_sym_LBRACE, - STATE(1127), 1, - sym_block, + STATE(377), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65179] = 2, + [66120] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5282), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5204), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65188] = 3, - ACTIONS(3796), 1, - anon_sym_LBRACE, - STATE(456), 1, - sym_declaration_list, + [66131] = 3, + ACTIONS(5284), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65199] = 3, - ACTIONS(5206), 1, - anon_sym_SEMI, - ACTIONS(5208), 1, - anon_sym_as, + [66142] = 3, + ACTIONS(3507), 1, + anon_sym_LPAREN, + STATE(1689), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65210] = 2, + [66153] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4672), 2, + ACTIONS(5288), 2, + sym_identifier, + sym_metavariable, + [66162] = 3, + ACTIONS(4085), 1, anon_sym_RBRACE, + ACTIONS(5216), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66173] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2431), 2, anon_sym_COMMA, - [65219] = 3, - ACTIONS(3862), 1, + anon_sym_GT, + [66182] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(885), 1, - sym_field_declaration_list, + STATE(2498), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65230] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5210), 1, - anon_sym_EQ, + [66193] = 3, + ACTIONS(4081), 1, + anon_sym_RBRACE, + ACTIONS(5216), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65241] = 3, - ACTIONS(3806), 1, - anon_sym_LBRACE, - STATE(893), 1, - sym_declaration_list, + [66204] = 3, + ACTIONS(2361), 1, + anon_sym_SQUOTE, + STATE(2373), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65252] = 3, - ACTIONS(3862), 1, - anon_sym_LBRACE, - STATE(896), 1, - sym_field_declaration_list, + [66215] = 3, + ACTIONS(5290), 1, + anon_sym_LBRACK, + ACTIONS(5292), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66226] = 3, + ACTIONS(3634), 1, + anon_sym_COLON_COLON, + ACTIONS(5294), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65263] = 2, + [66237] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4591), 2, + ACTIONS(5070), 2, anon_sym_COMMA, - anon_sym_GT, - [65272] = 3, - ACTIONS(2572), 1, - anon_sym_LPAREN, - STATE(920), 1, - sym_parameters, + anon_sym_PIPE, + [66246] = 3, + ACTIONS(2844), 1, + anon_sym_COLON, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65283] = 2, + [66257] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(54), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4561), 2, - anon_sym_COMMA, + [66268] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(5296), 1, anon_sym_GT, - [65292] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5212), 2, - sym_identifier, - sym_metavariable, - [65301] = 2, + [66279] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(888), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5127), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65310] = 2, + [66290] = 3, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(456), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4305), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65319] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5214), 1, - anon_sym_in, + [66301] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(5298), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65330] = 3, - ACTIONS(4179), 1, - anon_sym_LBRACE, - STATE(958), 1, - sym_enum_variant_list, + [66312] = 3, + ACTIONS(3632), 1, + anon_sym_COLON_COLON, + ACTIONS(5294), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65341] = 3, - ACTIONS(3806), 1, + [66323] = 3, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(996), 1, + STATE(1156), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65352] = 2, + [66334] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4482), 2, + ACTIONS(4519), 2, anon_sym_RPAREN, anon_sym_COMMA, - [65361] = 3, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_BANG, + [66343] = 3, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(698), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65372] = 2, + [66354] = 3, + ACTIONS(3952), 1, + anon_sym_COLON, + STATE(1915), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5220), 2, - sym_identifier, - sym_metavariable, - [65381] = 3, - ACTIONS(4081), 1, + [66365] = 3, + ACTIONS(4129), 1, anon_sym_PLUS, - ACTIONS(5222), 1, + ACTIONS(5300), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65392] = 3, - ACTIONS(3806), 1, + [66376] = 3, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(981), 1, + STATE(1142), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65403] = 3, - ACTIONS(3806), 1, + [66387] = 3, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(977), 1, + STATE(1141), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65414] = 3, - ACTIONS(3991), 1, - anon_sym_COLON, - ACTIONS(4081), 1, - anon_sym_PLUS, + [66398] = 3, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(473), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65425] = 2, + [66409] = 3, + ACTIONS(2642), 1, + anon_sym_LBRACE, + STATE(1127), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4709), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65434] = 3, - ACTIONS(5224), 1, - anon_sym_LBRACK, - ACTIONS(5226), 1, - anon_sym_BANG, + [66420] = 3, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(487), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65445] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5228), 1, - anon_sym_EQ, + [66431] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2506), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65456] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(66), 1, - sym_closure_parameters, + [66442] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65467] = 3, - ACTIONS(3826), 1, - anon_sym_LBRACE, - STATE(395), 1, - sym_field_declaration_list, + ACTIONS(5302), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66451] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65478] = 3, - ACTIONS(3796), 1, + ACTIONS(5027), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66460] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(409), 1, - sym_declaration_list, + STATE(2509), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65489] = 3, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1707), 1, - sym_parameters, + [66471] = 3, + ACTIONS(5304), 1, + anon_sym_SEMI, + ACTIONS(5306), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65500] = 3, - ACTIONS(3796), 1, + [66482] = 3, + ACTIONS(5308), 1, + anon_sym_LPAREN, + ACTIONS(5310), 1, anon_sym_LBRACE, - STATE(285), 1, - sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65511] = 3, - ACTIONS(3826), 1, + [66493] = 3, + ACTIONS(5312), 1, + anon_sym_LPAREN, + ACTIONS(5314), 1, anon_sym_LBRACE, - STATE(288), 1, - sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65522] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5230), 1, - anon_sym_SEMI, + [66504] = 3, + ACTIONS(4161), 1, + anon_sym_LBRACE, + STATE(272), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65533] = 3, - ACTIONS(3826), 1, + [66515] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(292), 1, - sym_field_declaration_list, + STATE(1107), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65544] = 3, - ACTIONS(3826), 1, + [66526] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(427), 1, - sym_field_declaration_list, + STATE(1160), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65555] = 3, - ACTIONS(2572), 1, - anon_sym_LPAREN, - STATE(1028), 1, - sym_parameters, + [66537] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2524), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65566] = 3, - ACTIONS(4083), 1, + [66548] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(306), 1, - sym_enum_variant_list, + STATE(2525), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65577] = 2, + [66559] = 3, + ACTIONS(3507), 1, + anon_sym_LPAREN, + STATE(1718), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5232), 2, - anon_sym_const, - sym_mutable_specifier, - [65586] = 2, + [66570] = 3, + ACTIONS(3856), 1, + anon_sym_LBRACE, + STATE(914), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4796), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65595] = 3, - ACTIONS(284), 1, + [66581] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1094), 1, + STATE(121), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65606] = 3, - ACTIONS(2618), 1, + [66592] = 3, + ACTIONS(3894), 1, anon_sym_LBRACE, - STATE(1095), 1, - sym_field_initializer_list, + STATE(920), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65617] = 3, - ACTIONS(602), 1, + [66603] = 3, + ACTIONS(3856), 1, anon_sym_LBRACE, - STATE(252), 1, - sym_block, + STATE(924), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65628] = 3, - ACTIONS(3806), 1, - anon_sym_LBRACE, - STATE(905), 1, - sym_declaration_list, + [66614] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65639] = 3, - ACTIONS(904), 1, + ACTIONS(5316), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66623] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1482), 1, + STATE(2554), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65650] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(70), 1, - sym_closure_parameters, + [66634] = 3, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(937), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65661] = 3, - ACTIONS(5234), 1, - anon_sym_LPAREN, - ACTIONS(5236), 1, + [66645] = 3, + ACTIONS(3914), 1, anon_sym_LBRACE, + STATE(359), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65672] = 3, - ACTIONS(5238), 1, + [66656] = 3, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(5240), 1, - anon_sym_LBRACE, + STATE(827), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65683] = 3, + [66667] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1135), 1, + STATE(2423), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65694] = 3, + [66678] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1142), 1, + STATE(2559), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65705] = 3, - ACTIONS(284), 1, + [66689] = 3, + ACTIONS(4161), 1, anon_sym_LBRACE, - STATE(1133), 1, - sym_block, + STATE(488), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65716] = 2, + [66700] = 3, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(285), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4835), 2, - anon_sym_RBRACE, + [66711] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5318), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [65725] = 3, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1712), 1, - sym_parameters, + [66720] = 3, + ACTIONS(3848), 1, + anon_sym_LBRACE, + STATE(344), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65736] = 3, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1675), 1, - sym_parameters, + [66731] = 3, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(286), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66742] = 3, + ACTIONS(5320), 1, + anon_sym_SEMI, + ACTIONS(5322), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66753] = 3, + ACTIONS(4041), 1, + anon_sym_RPAREN, + ACTIONS(5216), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66764] = 3, + ACTIONS(5216), 1, + anon_sym_SEMI, + ACTIONS(5324), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65747] = 3, - ACTIONS(602), 1, + [66775] = 3, + ACTIONS(582), 1, anon_sym_LBRACE, - STATE(251), 1, + STATE(240), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65758] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5242), 1, - anon_sym_EQ, + [66786] = 3, + ACTIONS(5216), 1, + anon_sym_SEMI, + ACTIONS(5326), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65769] = 3, - ACTIONS(602), 1, + [66797] = 3, + ACTIONS(582), 1, anon_sym_LBRACE, - STATE(253), 1, + STATE(241), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65780] = 3, - ACTIONS(15), 1, + [66808] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(167), 1, - sym_block, + STATE(484), 1, + sym_field_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66819] = 3, + ACTIONS(3507), 1, + anon_sym_LPAREN, + STATE(1715), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65791] = 3, - ACTIONS(4083), 1, + [66830] = 3, + ACTIONS(582), 1, anon_sym_LBRACE, - STATE(433), 1, - sym_enum_variant_list, + STATE(234), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65802] = 3, - ACTIONS(602), 1, - anon_sym_LBRACE, - STATE(255), 1, - sym_block, + [66841] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(5328), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65813] = 3, - ACTIONS(3796), 1, - anon_sym_LBRACE, - STATE(388), 1, - sym_declaration_list, + [66852] = 3, + ACTIONS(4334), 1, + anon_sym_COLON, + ACTIONS(4338), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65824] = 3, - ACTIONS(3796), 1, + [66863] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(267), 1, - sym_declaration_list, + STATE(481), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65835] = 3, - ACTIONS(5244), 1, - anon_sym_SEMI, - ACTIONS(5246), 1, - anon_sym_as, + [66874] = 3, + ACTIONS(3507), 1, + anon_sym_LPAREN, + STATE(1663), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65846] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5248), 1, - anon_sym_SEMI, + [66885] = 3, + ACTIONS(4161), 1, + anon_sym_LBRACE, + STATE(450), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65857] = 3, - ACTIONS(3796), 1, + [66896] = 3, + ACTIONS(3914), 1, anon_sym_LBRACE, - STATE(422), 1, + STATE(480), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65868] = 3, - ACTIONS(5144), 1, - anon_sym_SEMI, - ACTIONS(5250), 1, - anon_sym_RPAREN, + [66907] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65879] = 3, - ACTIONS(5144), 1, - anon_sym_SEMI, - ACTIONS(5252), 1, - anon_sym_RPAREN, + ACTIONS(5330), 2, + sym_float_literal, + sym_integer_literal, + [66916] = 3, + ACTIONS(3507), 1, + anon_sym_LPAREN, + STATE(1735), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65890] = 2, + [66927] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2606), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4387), 2, - anon_sym_COMMA, - anon_sym_GT, - [65899] = 2, + [66938] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5332), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5254), 2, + [66949] = 3, + ACTIONS(5334), 1, sym_identifier, - sym_metavariable, - [65908] = 3, - ACTIONS(2935), 1, - anon_sym_COLON, - ACTIONS(4081), 1, - anon_sym_PLUS, + ACTIONS(5336), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65919] = 3, - ACTIONS(3599), 1, - anon_sym_COLON_COLON, - ACTIONS(5256), 1, - anon_sym_BANG, + [66960] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5338), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65930] = 3, - ACTIONS(3604), 1, - anon_sym_COLON_COLON, - ACTIONS(5256), 1, - anon_sym_BANG, + [66971] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65941] = 2, + ACTIONS(5340), 2, + anon_sym_const, + sym_mutable_specifier, + [66980] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4593), 2, - anon_sym_RBRACE, + ACTIONS(5342), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [65950] = 3, - ACTIONS(3015), 1, - anon_sym_COLON, - ACTIONS(4081), 1, - anon_sym_PLUS, + [66989] = 3, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5344), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65961] = 3, - ACTIONS(3459), 1, + [67000] = 3, + ACTIONS(3507), 1, anon_sym_LPAREN, - STATE(1684), 1, + STATE(1400), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65972] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5258), 2, - sym_float_literal, - sym_integer_literal, - [65981] = 3, - ACTIONS(3011), 1, - anon_sym_COLON, - ACTIONS(4081), 1, - anon_sym_PLUS, + [67011] = 3, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(299), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65992] = 3, - ACTIONS(5144), 1, + [67022] = 3, + ACTIONS(4057), 1, + anon_sym_RPAREN, + ACTIONS(5216), 1, anon_sym_SEMI, - ACTIONS(5260), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66003] = 3, - ACTIONS(5144), 1, - anon_sym_SEMI, - ACTIONS(5262), 1, + [67033] = 3, + ACTIONS(4051), 1, anon_sym_RPAREN, + ACTIONS(5216), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66014] = 3, - ACTIONS(602), 1, + [67044] = 3, + ACTIONS(582), 1, anon_sym_LBRACE, - STATE(243), 1, + STATE(251), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66025] = 3, - ACTIONS(5264), 1, - sym_identifier, - ACTIONS(5266), 1, - sym_mutable_specifier, + [67055] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(5346), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66036] = 3, - ACTIONS(2580), 1, - anon_sym_LT2, - STATE(1130), 1, - sym_type_arguments, + [67066] = 3, + ACTIONS(3606), 1, + anon_sym_COLON_COLON, + ACTIONS(3788), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66047] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5268), 1, - anon_sym_in, + [67077] = 3, + ACTIONS(5348), 1, + anon_sym_LT, + STATE(735), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66058] = 3, - ACTIONS(2792), 1, - anon_sym_COLON, - ACTIONS(4081), 1, - anon_sym_PLUS, + [67088] = 3, + ACTIONS(2612), 1, + anon_sym_LT2, + STATE(1122), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66069] = 3, - ACTIONS(5144), 1, - anon_sym_SEMI, - ACTIONS(5270), 1, - anon_sym_RPAREN, + [67099] = 3, + ACTIONS(3848), 1, + anon_sym_LBRACE, + STATE(340), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66080] = 2, + [67110] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2604), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5272), 2, - anon_sym_const, - sym_mutable_specifier, - [66089] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5274), 1, - anon_sym_in, + [67121] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66100] = 3, - ACTIONS(5276), 1, - anon_sym_SEMI, - ACTIONS(5278), 1, - anon_sym_as, + ACTIONS(4807), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [67130] = 3, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(334), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66111] = 3, - ACTIONS(3826), 1, + [67141] = 3, + ACTIONS(4193), 1, anon_sym_LBRACE, - STATE(304), 1, - sym_field_declaration_list, + STATE(997), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66122] = 2, + [67152] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1155), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5280), 2, - sym_identifier, - sym_metavariable, - [66131] = 3, - ACTIONS(3987), 1, - anon_sym_RPAREN, - ACTIONS(5144), 1, - anon_sym_SEMI, + [67163] = 3, + ACTIONS(3497), 1, + anon_sym_BANG, + ACTIONS(5350), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66142] = 3, - ACTIONS(3826), 1, - anon_sym_LBRACE, - STATE(295), 1, - sym_field_declaration_list, + [67174] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(65), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66153] = 3, - ACTIONS(4023), 1, - anon_sym_RPAREN, - ACTIONS(5144), 1, - anon_sym_SEMI, + [67185] = 3, + ACTIONS(904), 1, + anon_sym_LBRACE, + STATE(1493), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66164] = 3, - ACTIONS(4005), 1, - anon_sym_RBRACE, - ACTIONS(5144), 1, - anon_sym_SEMI, + [67196] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66175] = 3, - ACTIONS(15), 1, + ACTIONS(4942), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [67205] = 3, + ACTIONS(582), 1, anon_sym_LBRACE, - STATE(163), 1, + STATE(244), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66186] = 3, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1390), 1, - sym_parameters, + [67216] = 3, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(333), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66197] = 3, - ACTIONS(3534), 1, - anon_sym_COLON_COLON, - ACTIONS(3656), 1, - anon_sym_BANG, + [67227] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2575), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66208] = 3, - ACTIONS(4083), 1, + [67238] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(273), 1, - sym_enum_variant_list, + STATE(2569), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66219] = 3, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1696), 1, - sym_parameters, + [67249] = 3, + ACTIONS(4926), 1, + sym_identifier, + ACTIONS(4930), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66230] = 3, - ACTIONS(4015), 1, - anon_sym_RPAREN, - ACTIONS(5144), 1, - anon_sym_SEMI, + [67260] = 3, + ACTIONS(4063), 1, + anon_sym_COLON, + ACTIONS(4129), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66241] = 2, + [67271] = 3, + ACTIONS(2804), 1, + anon_sym_COLON_COLON, + ACTIONS(3986), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5001), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [66250] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5282), 1, - anon_sym_GT, + [67282] = 3, + ACTIONS(3848), 1, + anon_sym_LBRACE, + STATE(328), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66261] = 3, - ACTIONS(4013), 1, - anon_sym_RBRACE, - ACTIONS(5144), 1, - anon_sym_SEMI, + [67293] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66272] = 2, + ACTIONS(4556), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [67302] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2391), 2, + ACTIONS(5010), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [66281] = 3, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1699), 1, - sym_parameters, + [67311] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66292] = 3, - ACTIONS(3449), 1, + ACTIONS(4881), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [67320] = 3, + ACTIONS(5352), 1, anon_sym_BANG, - ACTIONS(5284), 1, + ACTIONS(5354), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66303] = 3, - ACTIONS(3796), 1, - anon_sym_LBRACE, - STATE(279), 1, - sym_declaration_list, + [67331] = 3, + ACTIONS(3507), 1, + anon_sym_LPAREN, + STATE(1412), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66314] = 3, - ACTIONS(3826), 1, - anon_sym_LBRACE, - STATE(307), 1, - sym_field_declaration_list, + [67342] = 3, + ACTIONS(2604), 1, + anon_sym_LPAREN, + STATE(832), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66325] = 3, - ACTIONS(4007), 1, - anon_sym_RPAREN, - ACTIONS(5144), 1, - anon_sym_SEMI, + [67353] = 3, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(348), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66336] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5286), 1, - anon_sym_SEMI, + [67364] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66347] = 3, - ACTIONS(3796), 1, + ACTIONS(4313), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [67373] = 3, + ACTIONS(5356), 1, + anon_sym_LPAREN, + ACTIONS(5358), 1, anon_sym_LBRACE, - STATE(319), 1, - sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66358] = 3, - ACTIONS(3796), 1, + [67384] = 3, + ACTIONS(5360), 1, + anon_sym_LPAREN, + ACTIONS(5362), 1, anon_sym_LBRACE, - STATE(348), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66369] = 3, - ACTIONS(5288), 1, - anon_sym_LT, - STATE(697), 1, - sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66380] = 3, - ACTIONS(3826), 1, - anon_sym_LBRACE, - STATE(354), 1, - sym_field_declaration_list, + [67395] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66391] = 3, - ACTIONS(5290), 1, - anon_sym_BANG, - ACTIONS(5292), 1, + ACTIONS(4871), 2, + anon_sym_COMMA, + anon_sym_GT, + [67404] = 3, + ACTIONS(4123), 1, anon_sym_COLON_COLON, + ACTIONS(5364), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66402] = 3, - ACTIONS(4638), 1, - sym_identifier, - ACTIONS(4642), 1, - sym_mutable_specifier, + [67415] = 3, + ACTIONS(4087), 1, + anon_sym_COLON_COLON, + ACTIONS(5364), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66413] = 3, - ACTIONS(2728), 1, - anon_sym_COLON_COLON, - ACTIONS(3971), 1, - anon_sym_BANG, + [67426] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66424] = 2, + ACTIONS(5366), 2, + sym_identifier, + sym_metavariable, + [67435] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5294), 2, + ACTIONS(5368), 2, anon_sym_const, sym_mutable_specifier, - [66433] = 3, - ACTIONS(3830), 1, - anon_sym_LT, - STATE(758), 1, - sym_type_parameters, + [67444] = 3, + ACTIONS(4129), 1, + anon_sym_PLUS, + ACTIONS(5370), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66444] = 2, + [67455] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4103), 2, - anon_sym_RPAREN, + ACTIONS(4856), 2, anon_sym_COMMA, - [66453] = 3, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(2136), 1, - sym_trait_bounds, + anon_sym_GT, + [67464] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66464] = 3, - ACTIONS(5296), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACE, + ACTIONS(5372), 2, + anon_sym_const, + sym_mutable_specifier, + [67473] = 3, + ACTIONS(4079), 1, + anon_sym_COLON_COLON, + ACTIONS(5364), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66475] = 3, - ACTIONS(4083), 1, + [67484] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(450), 1, - sym_enum_variant_list, + STATE(1119), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66486] = 3, - ACTIONS(5300), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, + [67495] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, + STATE(2592), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66497] = 3, - ACTIONS(4051), 1, + [67506] = 2, + ACTIONS(5374), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66508] = 2, + [67514] = 2, + ACTIONS(5376), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5306), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66517] = 3, - ACTIONS(4045), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, - anon_sym_RPAREN, + [67522] = 2, + ACTIONS(5378), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66528] = 3, - ACTIONS(4043), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, - anon_sym_RPAREN, + [67530] = 2, + ACTIONS(5380), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66539] = 3, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(4299), 1, - anon_sym_PIPE, + [67538] = 2, + ACTIONS(5382), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66550] = 3, - ACTIONS(3590), 1, - anon_sym_COLON_COLON, - ACTIONS(5308), 1, - anon_sym_RPAREN, + [67546] = 2, + ACTIONS(5384), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66561] = 3, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1391), 1, - sym_parameters, + [67554] = 2, + ACTIONS(5386), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66572] = 2, - ACTIONS(5310), 1, + [67562] = 2, + ACTIONS(4924), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66580] = 2, - ACTIONS(5312), 1, - anon_sym_COLON, + [67570] = 2, + ACTIONS(5388), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66588] = 2, - ACTIONS(4778), 1, - anon_sym_GT, + [67578] = 2, + ACTIONS(5390), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66596] = 2, - ACTIONS(4788), 1, - anon_sym_RBRACE, + [67586] = 2, + ACTIONS(5392), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66604] = 2, - ACTIONS(5314), 1, + [67594] = 2, + ACTIONS(5394), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66612] = 2, - ACTIONS(5316), 1, - anon_sym_LBRACK, + [67602] = 2, + ACTIONS(5163), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66620] = 2, - ACTIONS(5318), 1, + [67610] = 2, + ACTIONS(4918), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66628] = 2, - ACTIONS(5320), 1, + [67618] = 2, + ACTIONS(5396), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66636] = 2, - ACTIONS(5322), 1, + [67626] = 2, + ACTIONS(5398), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66644] = 2, - ACTIONS(2682), 1, - anon_sym_COLON_COLON, + [67634] = 2, + ACTIONS(5400), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66652] = 2, - ACTIONS(4813), 1, - sym_identifier, + [67642] = 2, + ACTIONS(5402), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66660] = 2, - ACTIONS(5324), 1, + [67650] = 2, + ACTIONS(5404), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67658] = 2, + ACTIONS(4920), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67666] = 2, + ACTIONS(5406), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66668] = 2, - ACTIONS(2700), 1, - anon_sym_COLON_COLON, + [67674] = 2, + ACTIONS(5408), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66676] = 2, - ACTIONS(5326), 1, - anon_sym_COLON_COLON, + [67682] = 2, + ACTIONS(4906), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66684] = 2, - ACTIONS(5328), 1, + [67690] = 2, + ACTIONS(5410), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66692] = 2, - ACTIONS(5330), 1, + [67698] = 2, + ACTIONS(5412), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66700] = 2, - ACTIONS(4821), 1, - anon_sym_RBRACE, + [67706] = 2, + ACTIONS(5414), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66708] = 2, - ACTIONS(5332), 1, - anon_sym_COLON, + [67714] = 2, + ACTIONS(5416), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66716] = 2, - ACTIONS(5334), 1, - sym_identifier, + [67722] = 2, + ACTIONS(5418), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66724] = 2, - ACTIONS(5336), 1, - sym_identifier, + [67730] = 2, + ACTIONS(4898), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66732] = 2, - ACTIONS(5338), 1, + [67738] = 2, + ACTIONS(5420), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66740] = 2, - ACTIONS(5340), 1, + [67746] = 2, + ACTIONS(5422), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66748] = 2, - ACTIONS(5342), 1, - anon_sym_RBRACE, + [67754] = 2, + ACTIONS(5424), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66756] = 2, - ACTIONS(5344), 1, - anon_sym_EQ_GT, + [67762] = 2, + ACTIONS(4886), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66764] = 2, - ACTIONS(5346), 1, + [67770] = 2, + ACTIONS(5426), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66772] = 2, - ACTIONS(5348), 1, - sym_identifier, + [67778] = 2, + ACTIONS(5428), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66780] = 2, - ACTIONS(3229), 1, - anon_sym_COLON_COLON, + [67786] = 2, + ACTIONS(5430), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66788] = 2, - ACTIONS(5350), 1, - anon_sym_RBRACK, + [67794] = 2, + ACTIONS(5432), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66796] = 2, - ACTIONS(3517), 1, - anon_sym_COLON_COLON, + [67802] = 2, + ACTIONS(5434), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66804] = 2, - ACTIONS(5352), 1, - sym_identifier, + [67810] = 2, + ACTIONS(5436), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66812] = 2, - ACTIONS(4734), 1, + [67818] = 2, + ACTIONS(5438), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66820] = 2, - ACTIONS(5354), 1, + [67826] = 2, + ACTIONS(5440), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66828] = 2, - ACTIONS(4329), 1, - anon_sym_RPAREN, + [67834] = 2, + ACTIONS(5442), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66836] = 2, - ACTIONS(5356), 1, - anon_sym_COLON, + [67842] = 2, + ACTIONS(5444), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66844] = 2, - ACTIONS(5358), 1, - sym_identifier, + [67850] = 2, + ACTIONS(2520), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66852] = 2, - ACTIONS(4901), 1, + [67858] = 2, + ACTIONS(5446), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66860] = 2, - ACTIONS(5360), 1, - anon_sym_COLON, + [67866] = 2, + ACTIONS(5448), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66868] = 2, - ACTIONS(3193), 1, + [67874] = 2, + ACTIONS(3263), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66876] = 2, - ACTIONS(5362), 1, - anon_sym_COLON_COLON, + [67882] = 2, + ACTIONS(5450), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66884] = 2, - ACTIONS(5364), 1, - sym_identifier, + [67890] = 2, + ACTIONS(3598), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66892] = 2, - ACTIONS(5366), 1, - anon_sym_COLON, + [67898] = 2, + ACTIONS(5452), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66900] = 2, - ACTIONS(5368), 1, - sym_identifier, + [67906] = 2, + ACTIONS(3233), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66908] = 2, - ACTIONS(5370), 1, - anon_sym_SEMI, + [67914] = 2, + ACTIONS(5454), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66916] = 2, - ACTIONS(5372), 1, + [67922] = 2, + ACTIONS(5456), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66924] = 2, - ACTIONS(5374), 1, + [67930] = 2, + ACTIONS(5458), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66932] = 2, - ACTIONS(5376), 1, + [67938] = 2, + ACTIONS(5460), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66940] = 2, - ACTIONS(3191), 1, + [67946] = 2, + ACTIONS(5462), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67954] = 2, + ACTIONS(5464), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66948] = 2, - ACTIONS(4683), 1, + [67962] = 2, + ACTIONS(4845), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66956] = 2, - ACTIONS(4606), 1, + [67970] = 2, + ACTIONS(5466), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66964] = 2, - ACTIONS(5378), 1, + [67978] = 2, + ACTIONS(5468), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66972] = 2, - ACTIONS(5380), 1, - anon_sym_RBRACK, + [67986] = 2, + ACTIONS(5470), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66980] = 2, - ACTIONS(5382), 1, + [67994] = 2, + ACTIONS(5472), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66988] = 2, - ACTIONS(5384), 1, - anon_sym_RPAREN, + [68002] = 2, + ACTIONS(4916), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66996] = 2, - ACTIONS(5386), 1, + [68010] = 2, + ACTIONS(5474), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67004] = 2, - ACTIONS(5388), 1, + [68018] = 2, + ACTIONS(5476), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67012] = 2, - ACTIONS(5390), 1, + [68026] = 2, + ACTIONS(5478), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67020] = 2, - ACTIONS(5392), 1, + [68034] = 2, + ACTIONS(5480), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67028] = 2, - ACTIONS(5394), 1, + [68042] = 2, + ACTIONS(5482), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67036] = 2, - ACTIONS(5396), 1, + [68050] = 2, + ACTIONS(5484), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67044] = 2, - ACTIONS(5398), 1, + [68058] = 2, + ACTIONS(5486), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67052] = 2, - ACTIONS(4651), 1, - sym_identifier, + [68066] = 2, + ACTIONS(5488), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67060] = 2, - ACTIONS(5400), 1, - sym_identifier, + [68074] = 2, + ACTIONS(5490), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67068] = 2, - ACTIONS(4359), 1, - sym_identifier, + [68082] = 2, + ACTIONS(5492), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67076] = 2, - ACTIONS(4005), 1, - anon_sym_SEMI, + [68090] = 2, + ACTIONS(5494), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67084] = 2, - ACTIONS(5402), 1, - anon_sym_RBRACK, + [68098] = 2, + ACTIONS(5496), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67092] = 2, - ACTIONS(5404), 1, + [68106] = 2, + ACTIONS(4131), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67100] = 2, - ACTIONS(5406), 1, - anon_sym_RBRACK, + [68114] = 2, + ACTIONS(2804), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67108] = 2, - ACTIONS(5408), 1, - anon_sym_RBRACK, + [68122] = 2, + ACTIONS(5498), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67116] = 2, - ACTIONS(2728), 1, + [68130] = 2, + ACTIONS(5354), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67124] = 2, - ACTIONS(5410), 1, - anon_sym_RBRACK, + [68138] = 2, + ACTIONS(5500), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67132] = 2, - ACTIONS(5292), 1, - anon_sym_COLON_COLON, + [68146] = 2, + ACTIONS(5502), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67140] = 2, - ACTIONS(2476), 1, - anon_sym_PLUS, + [68154] = 2, + ACTIONS(5504), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67148] = 2, - ACTIONS(5412), 1, - anon_sym_fn, + [68162] = 2, + ACTIONS(2501), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67156] = 2, - ACTIONS(5414), 1, + [68170] = 2, + ACTIONS(5506), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67164] = 2, - ACTIONS(5416), 1, + [68178] = 2, + ACTIONS(5508), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68186] = 2, + ACTIONS(5510), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67172] = 2, - ACTIONS(5418), 1, + [68194] = 2, + ACTIONS(5512), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68202] = 2, + ACTIONS(5514), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68210] = 2, + ACTIONS(5516), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67180] = 2, - ACTIONS(5420), 1, - anon_sym_EQ_GT, + [68218] = 2, + ACTIONS(5518), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67188] = 2, - ACTIONS(5422), 1, + [68226] = 2, + ACTIONS(5520), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67196] = 2, - ACTIONS(5424), 1, + [68234] = 2, + ACTIONS(5522), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67204] = 2, - ACTIONS(5426), 1, + [68242] = 2, + ACTIONS(5524), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67212] = 2, - ACTIONS(5428), 1, - anon_sym_LT, + [68250] = 2, + ACTIONS(5216), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67220] = 2, - ACTIONS(5430), 1, - sym_identifier, + [68258] = 2, + ACTIONS(5526), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67228] = 2, - ACTIONS(5432), 1, - sym_identifier, + [68266] = 2, + ACTIONS(4799), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67236] = 2, - ACTIONS(5434), 1, - sym_identifier, + [68274] = 2, + ACTIONS(5528), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67244] = 2, - ACTIONS(4013), 1, - anon_sym_SEMI, + [68282] = 2, + ACTIONS(2766), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67252] = 2, - ACTIONS(5436), 1, + [68290] = 2, + ACTIONS(5530), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67260] = 2, - ACTIONS(5438), 1, - anon_sym_RPAREN, + [68298] = 2, + ACTIONS(2441), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67268] = 2, - ACTIONS(5440), 1, - anon_sym_fn, + [68306] = 2, + ACTIONS(2778), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67276] = 2, - ACTIONS(5442), 1, - anon_sym_EQ, + [68314] = 2, + ACTIONS(5532), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67284] = 2, - ACTIONS(5444), 1, - anon_sym_RBRACE, + [68322] = 2, + ACTIONS(5534), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67292] = 2, - ACTIONS(4109), 1, + [68330] = 2, + ACTIONS(5536), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67300] = 2, - ACTIONS(5446), 1, + [68338] = 2, + ACTIONS(5538), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67308] = 2, - ACTIONS(2375), 1, - anon_sym_EQ_GT, + [68346] = 2, + ACTIONS(5540), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67316] = 2, - ACTIONS(5448), 1, - anon_sym_LPAREN, + [68354] = 2, + ACTIONS(4961), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67324] = 2, - ACTIONS(5450), 1, + [68362] = 2, + ACTIONS(4963), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67332] = 2, - ACTIONS(5146), 1, - anon_sym_SEMI, + [68370] = 2, + ACTIONS(5542), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67340] = 2, - ACTIONS(5452), 1, - anon_sym_RBRACE, + [68378] = 2, + ACTIONS(5544), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67348] = 2, - ACTIONS(5454), 1, - sym_identifier, + [68386] = 2, + ACTIONS(522), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67356] = 2, - ACTIONS(5456), 1, - anon_sym_SEMI, + [68394] = 2, + ACTIONS(4785), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67364] = 2, - ACTIONS(5260), 1, - anon_sym_SEMI, + [68402] = 2, + ACTIONS(5546), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67372] = 2, - ACTIONS(5458), 1, + [68410] = 2, + ACTIONS(4877), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67380] = 2, - ACTIONS(5460), 1, + [68418] = 2, + ACTIONS(3584), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67388] = 2, - ACTIONS(3556), 1, + [68426] = 2, + ACTIONS(4213), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67396] = 2, - ACTIONS(5462), 1, - anon_sym_RBRACK, + [68434] = 2, + ACTIONS(4332), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67404] = 2, - ACTIONS(4107), 1, - anon_sym_COLON_COLON, + [68442] = 2, + ACTIONS(5548), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67412] = 2, - ACTIONS(5464), 1, - sym_self, + [68450] = 2, + ACTIONS(5550), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67420] = 2, - ACTIONS(5466), 1, - anon_sym_COLON, + [68458] = 2, + ACTIONS(5552), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67428] = 2, - ACTIONS(5468), 1, - sym_identifier, + [68466] = 2, + ACTIONS(5554), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67436] = 2, - ACTIONS(5470), 1, + [68474] = 2, + ACTIONS(5556), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67444] = 2, - ACTIONS(5158), 1, + [68482] = 2, + ACTIONS(5558), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67452] = 2, - ACTIONS(4568), 1, + [68490] = 2, + ACTIONS(5560), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67460] = 2, - ACTIONS(5472), 1, - sym_identifier, + [68498] = 2, + ACTIONS(5562), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67468] = 2, - ACTIONS(5474), 1, + [68506] = 2, + ACTIONS(5564), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67476] = 2, - ACTIONS(3590), 1, - anon_sym_COLON_COLON, + [68514] = 2, + ACTIONS(5218), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67484] = 2, - ACTIONS(4614), 1, - anon_sym_RBRACE, + [68522] = 2, + ACTIONS(4503), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67492] = 2, - ACTIONS(5476), 1, - anon_sym_EQ_GT, + [68530] = 2, + ACTIONS(5566), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67500] = 2, - ACTIONS(5478), 1, - anon_sym_RBRACE, + [68538] = 2, + ACTIONS(5568), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67508] = 2, - ACTIONS(4293), 1, + [68546] = 2, + ACTIONS(5570), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67516] = 2, - ACTIONS(5480), 1, + [68554] = 2, + ACTIONS(5572), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67524] = 2, - ACTIONS(512), 1, - anon_sym_RBRACK, + [68562] = 2, + ACTIONS(5574), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67532] = 2, - ACTIONS(5482), 1, + [68570] = 2, + ACTIONS(5576), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67540] = 2, - ACTIONS(5484), 1, - sym_identifier, + [68578] = 2, + ACTIONS(5578), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67548] = 2, - ACTIONS(5486), 1, - sym_identifier, + [68586] = 2, + ACTIONS(4392), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67556] = 2, - ACTIONS(5488), 1, + [68594] = 2, + ACTIONS(5580), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67564] = 2, - ACTIONS(5490), 1, + [68602] = 2, + ACTIONS(4633), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67572] = 2, - ACTIONS(5492), 1, + [68610] = 2, + ACTIONS(5582), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67580] = 2, - ACTIONS(5494), 1, - sym_identifier, + [68618] = 2, + ACTIONS(5584), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67588] = 2, - ACTIONS(4854), 1, + [68626] = 2, + ACTIONS(5586), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67596] = 2, - ACTIONS(368), 1, + [68634] = 2, + ACTIONS(5588), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68642] = 2, + ACTIONS(378), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67604] = 2, - ACTIONS(5496), 1, + [68650] = 2, + ACTIONS(4467), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67612] = 2, - ACTIONS(5498), 1, + [68658] = 2, + ACTIONS(5590), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68666] = 2, + ACTIONS(5592), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67620] = 2, - ACTIONS(5500), 1, - sym_identifier, + [68674] = 2, + ACTIONS(5594), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67628] = 2, - ACTIONS(4699), 1, - anon_sym_RBRACE, + [68682] = 2, + ACTIONS(5596), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67636] = 2, - ACTIONS(4809), 1, - anon_sym_RPAREN, + [68690] = 2, + ACTIONS(5598), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67644] = 2, - ACTIONS(5284), 1, - anon_sym_COLON_COLON, + [68698] = 2, + ACTIONS(5600), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67652] = 2, - ACTIONS(5502), 1, - sym_identifier, + [68706] = 2, + ACTIONS(5602), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67660] = 2, - ACTIONS(5504), 1, - anon_sym_SEMI, + [68714] = 2, + ACTIONS(5034), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67668] = 2, - ACTIONS(5506), 1, - anon_sym_COLON, + [68722] = 2, + ACTIONS(5604), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67676] = 2, - ACTIONS(4422), 1, - anon_sym_RPAREN, + [68730] = 2, + ACTIONS(5606), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67684] = 2, - ACTIONS(5508), 1, - sym_identifier, + [68738] = 2, + ACTIONS(5608), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67692] = 2, - ACTIONS(4045), 1, - anon_sym_COLON_COLON, + [68746] = 2, + ACTIONS(5610), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67700] = 2, - ACTIONS(5510), 1, + [68754] = 2, + ACTIONS(5612), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67708] = 2, - ACTIONS(3469), 1, - anon_sym_fn, + [68762] = 2, + ACTIONS(4087), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67716] = 2, - ACTIONS(5512), 1, - ts_builtin_sym_end, + [68770] = 2, + ACTIONS(4730), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67724] = 2, - ACTIONS(5514), 1, - anon_sym_COLON, + [68778] = 2, + ACTIONS(3519), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67732] = 2, - ACTIONS(5516), 1, + [68786] = 2, + ACTIONS(5614), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67740] = 2, - ACTIONS(2734), 1, + [68794] = 2, + ACTIONS(5616), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68802] = 2, + ACTIONS(2726), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67748] = 2, - ACTIONS(5518), 1, + [68810] = 2, + ACTIONS(5618), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67756] = 2, - ACTIONS(5520), 1, + [68818] = 2, + ACTIONS(5620), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67764] = 2, - ACTIONS(4395), 1, - anon_sym_RBRACK, + [68826] = 2, + ACTIONS(5622), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67772] = 2, - ACTIONS(5522), 1, - anon_sym_SEMI, + [68834] = 2, + ACTIONS(3640), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67780] = 2, - ACTIONS(2490), 1, - anon_sym_PLUS, + [68842] = 2, + ACTIONS(5624), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67788] = 2, - ACTIONS(2808), 1, - anon_sym_COLON_COLON, + [68850] = 2, + ACTIONS(3231), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67796] = 2, - ACTIONS(5524), 1, - sym_identifier, + [68858] = 2, + ACTIONS(2948), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67804] = 2, - ACTIONS(5526), 1, - anon_sym_SEMI, + [68866] = 2, + ACTIONS(4722), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67812] = 2, - ACTIONS(5528), 1, - sym_identifier, + [68874] = 2, + ACTIONS(5626), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67820] = 2, - ACTIONS(5530), 1, - sym_identifier, + [68882] = 2, + ACTIONS(5628), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67828] = 2, - ACTIONS(4815), 1, + [68890] = 2, + ACTIONS(5630), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67836] = 2, - ACTIONS(2409), 1, - anon_sym_EQ_GT, + [68898] = 2, + ACTIONS(5632), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67844] = 2, - ACTIONS(5123), 1, - sym_identifier, + [68906] = 2, + ACTIONS(4081), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67852] = 2, - ACTIONS(5532), 1, + [68914] = 2, + ACTIONS(5634), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67860] = 2, - ACTIONS(5144), 1, + [68922] = 2, + ACTIONS(5636), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67868] = 2, - ACTIONS(5534), 1, - anon_sym_SEMI, + [68930] = 2, + ACTIONS(5638), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67876] = 2, - ACTIONS(4133), 1, + [68938] = 2, + ACTIONS(4237), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67884] = 2, - ACTIONS(5536), 1, + [68946] = 2, + ACTIONS(5640), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67892] = 2, - ACTIONS(5538), 1, - sym_identifier, + [68954] = 2, + ACTIONS(5642), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67900] = 2, - ACTIONS(5540), 1, + [68962] = 2, + ACTIONS(5058), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67908] = 2, - ACTIONS(4155), 1, + [68970] = 2, + ACTIONS(4309), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67916] = 2, - ACTIONS(5542), 1, + [68978] = 2, + ACTIONS(5644), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67924] = 2, - ACTIONS(5544), 1, + [68986] = 2, + ACTIONS(5646), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67932] = 2, - ACTIONS(4147), 1, + [68994] = 2, + ACTIONS(4249), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67940] = 2, - ACTIONS(5546), 1, + [69002] = 2, + ACTIONS(5648), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67948] = 2, - ACTIONS(5548), 1, + [69010] = 2, + ACTIONS(4085), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67956] = 2, - ACTIONS(3231), 1, - anon_sym_RPAREN, + [69018] = 2, + ACTIONS(5650), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67964] = 2, - ACTIONS(5550), 1, - anon_sym_SEMI, + [69026] = 2, + ACTIONS(5091), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67972] = 2, - ACTIONS(5552), 1, - sym_identifier, + [69034] = 2, + ACTIONS(5652), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67980] = 2, - ACTIONS(5554), 1, + [69042] = 2, + ACTIONS(5654), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67988] = 2, - ACTIONS(5556), 1, + [69050] = 2, + ACTIONS(5656), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67996] = 2, - ACTIONS(5558), 1, + [69058] = 2, + ACTIONS(5658), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68004] = 2, - ACTIONS(5560), 1, + [69066] = 2, + ACTIONS(5660), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68012] = 2, - ACTIONS(5562), 1, - anon_sym_RPAREN, + [69074] = 2, + ACTIONS(5662), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68020] = 2, - ACTIONS(5564), 1, - sym_identifier, + [69082] = 2, + ACTIONS(5664), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68028] = 2, - ACTIONS(4559), 1, - sym_identifier, + [69090] = 2, + ACTIONS(4346), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68036] = 2, - ACTIONS(5566), 1, + [69098] = 2, + ACTIONS(5666), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68044] = 2, - ACTIONS(5568), 1, + [69106] = 2, + ACTIONS(5668), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68052] = 2, - ACTIONS(5570), 1, - sym_identifier, + [69114] = 2, + ACTIONS(5670), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68060] = 2, - ACTIONS(5572), 1, - sym_identifier, + [69122] = 2, + ACTIONS(5672), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68068] = 2, - ACTIONS(5574), 1, - anon_sym_fn, + [69130] = 2, + ACTIONS(5674), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68076] = 2, - ACTIONS(5576), 1, - anon_sym_RPAREN, + [69138] = 2, + ACTIONS(5676), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68084] = 2, - ACTIONS(5578), 1, - anon_sym_EQ_GT, + [69146] = 2, + ACTIONS(5678), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68092] = 2, - ACTIONS(5580), 1, - anon_sym_SEMI, + [69154] = 2, + ACTIONS(5680), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68100] = 2, - ACTIONS(5582), 1, - anon_sym_RBRACK, + [69162] = 2, + ACTIONS(5682), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68108] = 2, - ACTIONS(5584), 1, + [69170] = 2, + ACTIONS(5684), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68116] = 2, - ACTIONS(5586), 1, + [69178] = 2, + ACTIONS(5686), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68124] = 2, - ACTIONS(5588), 1, - anon_sym_RPAREN, + [69186] = 2, + ACTIONS(5688), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68132] = 2, - ACTIONS(5590), 1, + [69194] = 2, + ACTIONS(5690), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68140] = 2, - ACTIONS(4917), 1, - sym_identifier, + [69202] = 2, + ACTIONS(2477), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68148] = 2, - ACTIONS(5592), 1, + [69210] = 2, + ACTIONS(5692), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68156] = 2, - ACTIONS(4037), 1, + [69218] = 2, + ACTIONS(5694), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68164] = 2, - ACTIONS(5594), 1, - sym_identifier, + [69226] = 2, + ACTIONS(5696), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68172] = 2, - ACTIONS(5596), 1, + [69234] = 2, + ACTIONS(5698), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68180] = 2, - ACTIONS(5598), 1, - anon_sym_SEMI, + [69242] = 2, + ACTIONS(5700), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68188] = 2, - ACTIONS(5600), 1, + [69250] = 2, + ACTIONS(5254), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68196] = 2, - ACTIONS(5602), 1, - anon_sym_LPAREN, + [69258] = 2, + ACTIONS(4099), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68204] = 2, - ACTIONS(5604), 1, + [69266] = 2, + ACTIONS(5702), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68212] = 2, - ACTIONS(5606), 1, + [69274] = 2, + ACTIONS(5704), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68220] = 2, - ACTIONS(5608), 1, + [69282] = 2, + ACTIONS(5706), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68228] = 2, - ACTIONS(5610), 1, - sym_identifier, + [69290] = 2, + ACTIONS(5228), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68236] = 2, - ACTIONS(5612), 1, + [69298] = 2, + ACTIONS(5708), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68244] = 2, - ACTIONS(5614), 1, + [69306] = 2, + ACTIONS(5710), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68252] = 2, - ACTIONS(3983), 1, + [69314] = 2, + ACTIONS(5712), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68260] = 2, - ACTIONS(4989), 1, + [69322] = 2, + ACTIONS(5714), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68268] = 2, - ACTIONS(5616), 1, - anon_sym_COLON, + [69330] = 2, + ACTIONS(5716), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68276] = 2, - ACTIONS(5618), 1, - anon_sym_SEMI, + [69338] = 2, + ACTIONS(5718), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68284] = 2, - ACTIONS(5620), 1, + [69346] = 2, + ACTIONS(5720), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68292] = 2, - ACTIONS(5622), 1, + [69354] = 2, + ACTIONS(5722), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68300] = 2, - ACTIONS(5624), 1, - anon_sym_SEMI, + [69362] = 2, + ACTIONS(5165), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68308] = 2, - ACTIONS(3493), 1, + [69370] = 2, + ACTIONS(3543), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68316] = 2, - ACTIONS(5057), 1, - anon_sym_RBRACE, + [69378] = 2, + ACTIONS(5724), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68324] = 2, - ACTIONS(5626), 1, - anon_sym_SEMI, + [69386] = 2, + ACTIONS(3606), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68332] = 2, - ACTIONS(5628), 1, + [69394] = 2, + ACTIONS(5726), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68340] = 2, - ACTIONS(5630), 1, - anon_sym_SEMI, + [69402] = 2, + ACTIONS(3259), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68348] = 2, - ACTIONS(5632), 1, - anon_sym_RBRACE, + [69410] = 2, + ACTIONS(5728), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68356] = 2, - ACTIONS(5634), 1, - anon_sym_EQ_GT, + [69418] = 2, + ACTIONS(5730), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68364] = 2, - ACTIONS(5636), 1, + [69426] = 2, + ACTIONS(5732), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68372] = 2, - ACTIONS(5638), 1, + [69434] = 2, + ACTIONS(5734), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68380] = 2, - ACTIONS(5640), 1, + [69442] = 2, + ACTIONS(5736), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68388] = 2, - ACTIONS(5642), 1, - anon_sym_SEMI, + [69450] = 2, + ACTIONS(5350), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68396] = 2, - ACTIONS(5644), 1, + [69458] = 2, + ACTIONS(5738), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68404] = 2, - ACTIONS(5646), 1, + [69466] = 2, + ACTIONS(5740), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68412] = 2, - ACTIONS(5648), 1, + [69474] = 2, + ACTIONS(5742), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68420] = 2, - ACTIONS(4355), 1, - anon_sym_RPAREN, + [69482] = 2, + ACTIONS(5744), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68428] = 2, - ACTIONS(5650), 1, + [69490] = 2, + ACTIONS(5746), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68436] = 2, - ACTIONS(5162), 1, + [69498] = 2, + ACTIONS(5222), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68444] = 2, - ACTIONS(3534), 1, - anon_sym_COLON_COLON, + [69506] = 2, + ACTIONS(4053), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68452] = 2, - ACTIONS(5652), 1, + [69514] = 2, + ACTIONS(5748), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -129278,1929 +133566,1969 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(659)] = 0, - [SMALL_STATE(660)] = 129, - [SMALL_STATE(661)] = 258, - [SMALL_STATE(662)] = 387, - [SMALL_STATE(663)] = 516, - [SMALL_STATE(664)] = 645, - [SMALL_STATE(665)] = 774, - [SMALL_STATE(666)] = 903, - [SMALL_STATE(667)] = 1032, - [SMALL_STATE(668)] = 1161, - [SMALL_STATE(669)] = 1290, - [SMALL_STATE(670)] = 1419, - [SMALL_STATE(671)] = 1548, - [SMALL_STATE(672)] = 1677, - [SMALL_STATE(673)] = 1806, - [SMALL_STATE(674)] = 1935, - [SMALL_STATE(675)] = 2064, - [SMALL_STATE(676)] = 2193, - [SMALL_STATE(677)] = 2322, - [SMALL_STATE(678)] = 2451, - [SMALL_STATE(679)] = 2580, - [SMALL_STATE(680)] = 2709, - [SMALL_STATE(681)] = 2838, - [SMALL_STATE(682)] = 2967, - [SMALL_STATE(683)] = 3096, - [SMALL_STATE(684)] = 3225, - [SMALL_STATE(685)] = 3354, - [SMALL_STATE(686)] = 3483, - [SMALL_STATE(687)] = 3612, - [SMALL_STATE(688)] = 3741, - [SMALL_STATE(689)] = 3870, - [SMALL_STATE(690)] = 3999, - [SMALL_STATE(691)] = 4128, - [SMALL_STATE(692)] = 4257, - [SMALL_STATE(693)] = 4386, - [SMALL_STATE(694)] = 4515, - [SMALL_STATE(695)] = 4644, - [SMALL_STATE(696)] = 4773, - [SMALL_STATE(697)] = 4902, - [SMALL_STATE(698)] = 5031, - [SMALL_STATE(699)] = 5160, - [SMALL_STATE(700)] = 5289, - [SMALL_STATE(701)] = 5418, - [SMALL_STATE(702)] = 5547, - [SMALL_STATE(703)] = 5676, - [SMALL_STATE(704)] = 5805, - [SMALL_STATE(705)] = 5934, - [SMALL_STATE(706)] = 6063, - [SMALL_STATE(707)] = 6192, - [SMALL_STATE(708)] = 6321, - [SMALL_STATE(709)] = 6450, - [SMALL_STATE(710)] = 6579, - [SMALL_STATE(711)] = 6708, - [SMALL_STATE(712)] = 6837, - [SMALL_STATE(713)] = 6966, - [SMALL_STATE(714)] = 7095, - [SMALL_STATE(715)] = 7224, - [SMALL_STATE(716)] = 7353, - [SMALL_STATE(717)] = 7482, - [SMALL_STATE(718)] = 7611, - [SMALL_STATE(719)] = 7740, - [SMALL_STATE(720)] = 7869, - [SMALL_STATE(721)] = 7998, - [SMALL_STATE(722)] = 8127, - [SMALL_STATE(723)] = 8256, - [SMALL_STATE(724)] = 8385, - [SMALL_STATE(725)] = 8514, - [SMALL_STATE(726)] = 8643, - [SMALL_STATE(727)] = 8772, - [SMALL_STATE(728)] = 8901, - [SMALL_STATE(729)] = 9030, - [SMALL_STATE(730)] = 9159, - [SMALL_STATE(731)] = 9288, - [SMALL_STATE(732)] = 9417, - [SMALL_STATE(733)] = 9546, - [SMALL_STATE(734)] = 9675, - [SMALL_STATE(735)] = 9804, - [SMALL_STATE(736)] = 9933, - [SMALL_STATE(737)] = 10062, - [SMALL_STATE(738)] = 10193, - [SMALL_STATE(739)] = 10264, - [SMALL_STATE(740)] = 10393, - [SMALL_STATE(741)] = 10522, - [SMALL_STATE(742)] = 10651, - [SMALL_STATE(743)] = 10780, - [SMALL_STATE(744)] = 10909, - [SMALL_STATE(745)] = 11038, - [SMALL_STATE(746)] = 11167, - [SMALL_STATE(747)] = 11296, - [SMALL_STATE(748)] = 11425, - [SMALL_STATE(749)] = 11554, - [SMALL_STATE(750)] = 11683, - [SMALL_STATE(751)] = 11812, - [SMALL_STATE(752)] = 11941, - [SMALL_STATE(753)] = 12070, - [SMALL_STATE(754)] = 12199, - [SMALL_STATE(755)] = 12328, - [SMALL_STATE(756)] = 12457, - [SMALL_STATE(757)] = 12586, - [SMALL_STATE(758)] = 12715, - [SMALL_STATE(759)] = 12844, - [SMALL_STATE(760)] = 12973, - [SMALL_STATE(761)] = 13102, - [SMALL_STATE(762)] = 13231, - [SMALL_STATE(763)] = 13360, - [SMALL_STATE(764)] = 13489, - [SMALL_STATE(765)] = 13618, - [SMALL_STATE(766)] = 13747, - [SMALL_STATE(767)] = 13876, - [SMALL_STATE(768)] = 14005, - [SMALL_STATE(769)] = 14134, - [SMALL_STATE(770)] = 14200, - [SMALL_STATE(771)] = 14266, - [SMALL_STATE(772)] = 14332, - [SMALL_STATE(773)] = 14398, - [SMALL_STATE(774)] = 14460, - [SMALL_STATE(775)] = 14530, - [SMALL_STATE(776)] = 14597, - [SMALL_STATE(777)] = 14664, - [SMALL_STATE(778)] = 14724, - [SMALL_STATE(779)] = 14784, - [SMALL_STATE(780)] = 14844, - [SMALL_STATE(781)] = 14908, - [SMALL_STATE(782)] = 14964, - [SMALL_STATE(783)] = 15020, - [SMALL_STATE(784)] = 15084, - [SMALL_STATE(785)] = 15148, - [SMALL_STATE(786)] = 15208, - [SMALL_STATE(787)] = 15264, - [SMALL_STATE(788)] = 15328, - [SMALL_STATE(789)] = 15384, - [SMALL_STATE(790)] = 15446, - [SMALL_STATE(791)] = 15502, - [SMALL_STATE(792)] = 15557, - [SMALL_STATE(793)] = 15614, - [SMALL_STATE(794)] = 15673, - [SMALL_STATE(795)] = 15732, - [SMALL_STATE(796)] = 15789, - [SMALL_STATE(797)] = 15848, - [SMALL_STATE(798)] = 15905, - [SMALL_STATE(799)] = 15962, - [SMALL_STATE(800)] = 16016, - [SMALL_STATE(801)] = 16070, - [SMALL_STATE(802)] = 16128, - [SMALL_STATE(803)] = 16184, - [SMALL_STATE(804)] = 16242, - [SMALL_STATE(805)] = 16296, - [SMALL_STATE(806)] = 16350, - [SMALL_STATE(807)] = 16404, - [SMALL_STATE(808)] = 16462, - [SMALL_STATE(809)] = 16516, - [SMALL_STATE(810)] = 16570, - [SMALL_STATE(811)] = 16624, - [SMALL_STATE(812)] = 16678, - [SMALL_STATE(813)] = 16732, - [SMALL_STATE(814)] = 16786, - [SMALL_STATE(815)] = 16840, - [SMALL_STATE(816)] = 16894, - [SMALL_STATE(817)] = 16948, - [SMALL_STATE(818)] = 17002, - [SMALL_STATE(819)] = 17056, - [SMALL_STATE(820)] = 17110, - [SMALL_STATE(821)] = 17164, - [SMALL_STATE(822)] = 17218, - [SMALL_STATE(823)] = 17272, - [SMALL_STATE(824)] = 17326, - [SMALL_STATE(825)] = 17380, - [SMALL_STATE(826)] = 17436, - [SMALL_STATE(827)] = 17490, - [SMALL_STATE(828)] = 17544, - [SMALL_STATE(829)] = 17598, - [SMALL_STATE(830)] = 17654, - [SMALL_STATE(831)] = 17708, - [SMALL_STATE(832)] = 17764, - [SMALL_STATE(833)] = 17818, - [SMALL_STATE(834)] = 17872, - [SMALL_STATE(835)] = 17926, - [SMALL_STATE(836)] = 17980, - [SMALL_STATE(837)] = 18034, - [SMALL_STATE(838)] = 18088, - [SMALL_STATE(839)] = 18142, - [SMALL_STATE(840)] = 18196, - [SMALL_STATE(841)] = 18250, - [SMALL_STATE(842)] = 18304, - [SMALL_STATE(843)] = 18358, - [SMALL_STATE(844)] = 18412, - [SMALL_STATE(845)] = 18466, - [SMALL_STATE(846)] = 18520, - [SMALL_STATE(847)] = 18574, - [SMALL_STATE(848)] = 18628, - [SMALL_STATE(849)] = 18682, - [SMALL_STATE(850)] = 18736, - [SMALL_STATE(851)] = 18790, - [SMALL_STATE(852)] = 18844, - [SMALL_STATE(853)] = 18898, - [SMALL_STATE(854)] = 18952, - [SMALL_STATE(855)] = 19006, - [SMALL_STATE(856)] = 19060, - [SMALL_STATE(857)] = 19114, - [SMALL_STATE(858)] = 19168, - [SMALL_STATE(859)] = 19222, - [SMALL_STATE(860)] = 19276, - [SMALL_STATE(861)] = 19330, - [SMALL_STATE(862)] = 19384, - [SMALL_STATE(863)] = 19438, - [SMALL_STATE(864)] = 19492, - [SMALL_STATE(865)] = 19546, - [SMALL_STATE(866)] = 19600, - [SMALL_STATE(867)] = 19654, - [SMALL_STATE(868)] = 19708, - [SMALL_STATE(869)] = 19762, - [SMALL_STATE(870)] = 19816, - [SMALL_STATE(871)] = 19870, - [SMALL_STATE(872)] = 19924, - [SMALL_STATE(873)] = 19978, - [SMALL_STATE(874)] = 20032, - [SMALL_STATE(875)] = 20086, - [SMALL_STATE(876)] = 20140, - [SMALL_STATE(877)] = 20194, - [SMALL_STATE(878)] = 20248, - [SMALL_STATE(879)] = 20302, - [SMALL_STATE(880)] = 20356, - [SMALL_STATE(881)] = 20410, - [SMALL_STATE(882)] = 20464, - [SMALL_STATE(883)] = 20518, - [SMALL_STATE(884)] = 20572, - [SMALL_STATE(885)] = 20626, - [SMALL_STATE(886)] = 20680, - [SMALL_STATE(887)] = 20734, - [SMALL_STATE(888)] = 20788, - [SMALL_STATE(889)] = 20842, - [SMALL_STATE(890)] = 20896, - [SMALL_STATE(891)] = 20950, - [SMALL_STATE(892)] = 21004, - [SMALL_STATE(893)] = 21058, - [SMALL_STATE(894)] = 21112, - [SMALL_STATE(895)] = 21166, - [SMALL_STATE(896)] = 21220, - [SMALL_STATE(897)] = 21274, - [SMALL_STATE(898)] = 21328, - [SMALL_STATE(899)] = 21382, - [SMALL_STATE(900)] = 21436, - [SMALL_STATE(901)] = 21490, - [SMALL_STATE(902)] = 21544, - [SMALL_STATE(903)] = 21598, - [SMALL_STATE(904)] = 21652, - [SMALL_STATE(905)] = 21706, - [SMALL_STATE(906)] = 21760, - [SMALL_STATE(907)] = 21814, - [SMALL_STATE(908)] = 21868, - [SMALL_STATE(909)] = 21922, - [SMALL_STATE(910)] = 21978, - [SMALL_STATE(911)] = 22032, - [SMALL_STATE(912)] = 22088, - [SMALL_STATE(913)] = 22142, - [SMALL_STATE(914)] = 22196, - [SMALL_STATE(915)] = 22250, - [SMALL_STATE(916)] = 22304, - [SMALL_STATE(917)] = 22358, - [SMALL_STATE(918)] = 22412, - [SMALL_STATE(919)] = 22466, - [SMALL_STATE(920)] = 22520, - [SMALL_STATE(921)] = 22576, - [SMALL_STATE(922)] = 22630, - [SMALL_STATE(923)] = 22684, - [SMALL_STATE(924)] = 22738, - [SMALL_STATE(925)] = 22792, - [SMALL_STATE(926)] = 22848, - [SMALL_STATE(927)] = 22902, - [SMALL_STATE(928)] = 22956, - [SMALL_STATE(929)] = 23010, - [SMALL_STATE(930)] = 23064, - [SMALL_STATE(931)] = 23118, - [SMALL_STATE(932)] = 23172, - [SMALL_STATE(933)] = 23226, - [SMALL_STATE(934)] = 23282, - [SMALL_STATE(935)] = 23336, - [SMALL_STATE(936)] = 23390, - [SMALL_STATE(937)] = 23444, - [SMALL_STATE(938)] = 23500, - [SMALL_STATE(939)] = 23554, - [SMALL_STATE(940)] = 23608, - [SMALL_STATE(941)] = 23662, - [SMALL_STATE(942)] = 23716, - [SMALL_STATE(943)] = 23770, - [SMALL_STATE(944)] = 23824, - [SMALL_STATE(945)] = 23878, - [SMALL_STATE(946)] = 23932, - [SMALL_STATE(947)] = 23986, - [SMALL_STATE(948)] = 24040, - [SMALL_STATE(949)] = 24094, - [SMALL_STATE(950)] = 24148, - [SMALL_STATE(951)] = 24202, - [SMALL_STATE(952)] = 24256, - [SMALL_STATE(953)] = 24310, - [SMALL_STATE(954)] = 24364, - [SMALL_STATE(955)] = 24418, - [SMALL_STATE(956)] = 24472, - [SMALL_STATE(957)] = 24526, - [SMALL_STATE(958)] = 24580, - [SMALL_STATE(959)] = 24634, - [SMALL_STATE(960)] = 24688, - [SMALL_STATE(961)] = 24742, - [SMALL_STATE(962)] = 24796, - [SMALL_STATE(963)] = 24850, - [SMALL_STATE(964)] = 24904, - [SMALL_STATE(965)] = 24958, - [SMALL_STATE(966)] = 25012, - [SMALL_STATE(967)] = 25066, - [SMALL_STATE(968)] = 25120, - [SMALL_STATE(969)] = 25174, - [SMALL_STATE(970)] = 25228, - [SMALL_STATE(971)] = 25282, - [SMALL_STATE(972)] = 25336, - [SMALL_STATE(973)] = 25390, - [SMALL_STATE(974)] = 25444, - [SMALL_STATE(975)] = 25498, - [SMALL_STATE(976)] = 25552, - [SMALL_STATE(977)] = 25606, - [SMALL_STATE(978)] = 25660, - [SMALL_STATE(979)] = 25714, - [SMALL_STATE(980)] = 25768, - [SMALL_STATE(981)] = 25822, - [SMALL_STATE(982)] = 25876, - [SMALL_STATE(983)] = 25930, - [SMALL_STATE(984)] = 25984, - [SMALL_STATE(985)] = 26038, - [SMALL_STATE(986)] = 26092, - [SMALL_STATE(987)] = 26146, - [SMALL_STATE(988)] = 26200, - [SMALL_STATE(989)] = 26254, - [SMALL_STATE(990)] = 26308, - [SMALL_STATE(991)] = 26362, - [SMALL_STATE(992)] = 26416, - [SMALL_STATE(993)] = 26470, - [SMALL_STATE(994)] = 26524, - [SMALL_STATE(995)] = 26578, - [SMALL_STATE(996)] = 26632, - [SMALL_STATE(997)] = 26686, - [SMALL_STATE(998)] = 26740, - [SMALL_STATE(999)] = 26794, - [SMALL_STATE(1000)] = 26848, - [SMALL_STATE(1001)] = 26902, - [SMALL_STATE(1002)] = 26956, - [SMALL_STATE(1003)] = 27010, - [SMALL_STATE(1004)] = 27064, - [SMALL_STATE(1005)] = 27118, - [SMALL_STATE(1006)] = 27172, - [SMALL_STATE(1007)] = 27226, - [SMALL_STATE(1008)] = 27280, - [SMALL_STATE(1009)] = 27334, - [SMALL_STATE(1010)] = 27388, - [SMALL_STATE(1011)] = 27442, - [SMALL_STATE(1012)] = 27496, - [SMALL_STATE(1013)] = 27550, - [SMALL_STATE(1014)] = 27604, - [SMALL_STATE(1015)] = 27658, - [SMALL_STATE(1016)] = 27712, - [SMALL_STATE(1017)] = 27766, - [SMALL_STATE(1018)] = 27820, - [SMALL_STATE(1019)] = 27874, - [SMALL_STATE(1020)] = 27928, - [SMALL_STATE(1021)] = 27982, - [SMALL_STATE(1022)] = 28036, - [SMALL_STATE(1023)] = 28090, - [SMALL_STATE(1024)] = 28144, - [SMALL_STATE(1025)] = 28198, - [SMALL_STATE(1026)] = 28252, - [SMALL_STATE(1027)] = 28306, - [SMALL_STATE(1028)] = 28360, - [SMALL_STATE(1029)] = 28416, - [SMALL_STATE(1030)] = 28470, - [SMALL_STATE(1031)] = 28524, - [SMALL_STATE(1032)] = 28578, - [SMALL_STATE(1033)] = 28632, - [SMALL_STATE(1034)] = 28686, - [SMALL_STATE(1035)] = 28740, - [SMALL_STATE(1036)] = 28796, - [SMALL_STATE(1037)] = 28850, - [SMALL_STATE(1038)] = 28904, - [SMALL_STATE(1039)] = 28958, - [SMALL_STATE(1040)] = 29012, - [SMALL_STATE(1041)] = 29066, - [SMALL_STATE(1042)] = 29120, - [SMALL_STATE(1043)] = 29174, - [SMALL_STATE(1044)] = 29230, - [SMALL_STATE(1045)] = 29284, - [SMALL_STATE(1046)] = 29338, - [SMALL_STATE(1047)] = 29392, - [SMALL_STATE(1048)] = 29446, - [SMALL_STATE(1049)] = 29502, - [SMALL_STATE(1050)] = 29556, - [SMALL_STATE(1051)] = 29612, - [SMALL_STATE(1052)] = 29666, - [SMALL_STATE(1053)] = 29720, - [SMALL_STATE(1054)] = 29774, - [SMALL_STATE(1055)] = 29828, - [SMALL_STATE(1056)] = 29882, - [SMALL_STATE(1057)] = 29936, - [SMALL_STATE(1058)] = 29989, - [SMALL_STATE(1059)] = 30042, - [SMALL_STATE(1060)] = 30095, - [SMALL_STATE(1061)] = 30150, - [SMALL_STATE(1062)] = 30203, - [SMALL_STATE(1063)] = 30256, - [SMALL_STATE(1064)] = 30309, - [SMALL_STATE(1065)] = 30362, - [SMALL_STATE(1066)] = 30415, - [SMALL_STATE(1067)] = 30468, - [SMALL_STATE(1068)] = 30521, - [SMALL_STATE(1069)] = 30574, - [SMALL_STATE(1070)] = 30627, - [SMALL_STATE(1071)] = 30682, - [SMALL_STATE(1072)] = 30735, - [SMALL_STATE(1073)] = 30788, - [SMALL_STATE(1074)] = 30841, - [SMALL_STATE(1075)] = 30894, - [SMALL_STATE(1076)] = 30947, - [SMALL_STATE(1077)] = 31000, - [SMALL_STATE(1078)] = 31053, - [SMALL_STATE(1079)] = 31106, - [SMALL_STATE(1080)] = 31159, - [SMALL_STATE(1081)] = 31212, - [SMALL_STATE(1082)] = 31265, - [SMALL_STATE(1083)] = 31318, - [SMALL_STATE(1084)] = 31371, - [SMALL_STATE(1085)] = 31424, - [SMALL_STATE(1086)] = 31477, - [SMALL_STATE(1087)] = 31530, - [SMALL_STATE(1088)] = 31585, - [SMALL_STATE(1089)] = 31638, - [SMALL_STATE(1090)] = 31691, - [SMALL_STATE(1091)] = 31744, - [SMALL_STATE(1092)] = 31797, - [SMALL_STATE(1093)] = 31852, - [SMALL_STATE(1094)] = 31905, - [SMALL_STATE(1095)] = 31958, - [SMALL_STATE(1096)] = 32011, - [SMALL_STATE(1097)] = 32064, - [SMALL_STATE(1098)] = 32153, - [SMALL_STATE(1099)] = 32210, - [SMALL_STATE(1100)] = 32263, - [SMALL_STATE(1101)] = 32316, - [SMALL_STATE(1102)] = 32369, - [SMALL_STATE(1103)] = 32422, - [SMALL_STATE(1104)] = 32475, - [SMALL_STATE(1105)] = 32528, - [SMALL_STATE(1106)] = 32581, - [SMALL_STATE(1107)] = 32634, - [SMALL_STATE(1108)] = 32687, - [SMALL_STATE(1109)] = 32740, - [SMALL_STATE(1110)] = 32793, - [SMALL_STATE(1111)] = 32846, - [SMALL_STATE(1112)] = 32899, - [SMALL_STATE(1113)] = 32952, - [SMALL_STATE(1114)] = 33005, - [SMALL_STATE(1115)] = 33058, - [SMALL_STATE(1116)] = 33111, - [SMALL_STATE(1117)] = 33164, - [SMALL_STATE(1118)] = 33217, - [SMALL_STATE(1119)] = 33270, - [SMALL_STATE(1120)] = 33323, - [SMALL_STATE(1121)] = 33376, - [SMALL_STATE(1122)] = 33429, - [SMALL_STATE(1123)] = 33482, - [SMALL_STATE(1124)] = 33535, - [SMALL_STATE(1125)] = 33588, - [SMALL_STATE(1126)] = 33641, - [SMALL_STATE(1127)] = 33694, - [SMALL_STATE(1128)] = 33747, - [SMALL_STATE(1129)] = 33800, - [SMALL_STATE(1130)] = 33853, - [SMALL_STATE(1131)] = 33906, - [SMALL_STATE(1132)] = 33959, - [SMALL_STATE(1133)] = 34012, - [SMALL_STATE(1134)] = 34065, - [SMALL_STATE(1135)] = 34118, - [SMALL_STATE(1136)] = 34171, - [SMALL_STATE(1137)] = 34224, - [SMALL_STATE(1138)] = 34277, - [SMALL_STATE(1139)] = 34330, - [SMALL_STATE(1140)] = 34383, - [SMALL_STATE(1141)] = 34436, - [SMALL_STATE(1142)] = 34489, - [SMALL_STATE(1143)] = 34542, - [SMALL_STATE(1144)] = 34595, - [SMALL_STATE(1145)] = 34648, - [SMALL_STATE(1146)] = 34701, - [SMALL_STATE(1147)] = 34754, - [SMALL_STATE(1148)] = 34843, - [SMALL_STATE(1149)] = 34896, - [SMALL_STATE(1150)] = 34949, - [SMALL_STATE(1151)] = 35002, - [SMALL_STATE(1152)] = 35055, - [SMALL_STATE(1153)] = 35108, - [SMALL_STATE(1154)] = 35161, - [SMALL_STATE(1155)] = 35214, - [SMALL_STATE(1156)] = 35267, - [SMALL_STATE(1157)] = 35320, - [SMALL_STATE(1158)] = 35406, - [SMALL_STATE(1159)] = 35466, - [SMALL_STATE(1160)] = 35526, - [SMALL_STATE(1161)] = 35586, - [SMALL_STATE(1162)] = 35638, - [SMALL_STATE(1163)] = 35720, - [SMALL_STATE(1164)] = 35806, - [SMALL_STATE(1165)] = 35870, - [SMALL_STATE(1166)] = 35932, - [SMALL_STATE(1167)] = 36014, - [SMALL_STATE(1168)] = 36074, - [SMALL_STATE(1169)] = 36148, - [SMALL_STATE(1170)] = 36230, - [SMALL_STATE(1171)] = 36282, - [SMALL_STATE(1172)] = 36350, - [SMALL_STATE(1173)] = 36432, - [SMALL_STATE(1174)] = 36510, - [SMALL_STATE(1175)] = 36590, - [SMALL_STATE(1176)] = 36662, - [SMALL_STATE(1177)] = 36732, - [SMALL_STATE(1178)] = 36798, - [SMALL_STATE(1179)] = 36880, - [SMALL_STATE(1180)] = 36962, - [SMALL_STATE(1181)] = 37041, - [SMALL_STATE(1182)] = 37128, - [SMALL_STATE(1183)] = 37215, - [SMALL_STATE(1184)] = 37302, - [SMALL_STATE(1185)] = 37387, - [SMALL_STATE(1186)] = 37438, - [SMALL_STATE(1187)] = 37495, - [SMALL_STATE(1188)] = 37546, - [SMALL_STATE(1189)] = 37631, - [SMALL_STATE(1190)] = 37718, - [SMALL_STATE(1191)] = 37772, - [SMALL_STATE(1192)] = 37848, - [SMALL_STATE(1193)] = 37924, - [SMALL_STATE(1194)] = 38000, - [SMALL_STATE(1195)] = 38076, - [SMALL_STATE(1196)] = 38132, - [SMALL_STATE(1197)] = 38185, - [SMALL_STATE(1198)] = 38234, - [SMALL_STATE(1199)] = 38283, - [SMALL_STATE(1200)] = 38332, - [SMALL_STATE(1201)] = 38383, - [SMALL_STATE(1202)] = 38434, - [SMALL_STATE(1203)] = 38483, - [SMALL_STATE(1204)] = 38556, - [SMALL_STATE(1205)] = 38645, - [SMALL_STATE(1206)] = 38694, - [SMALL_STATE(1207)] = 38783, - [SMALL_STATE(1208)] = 38832, - [SMALL_STATE(1209)] = 38881, - [SMALL_STATE(1210)] = 38934, - [SMALL_STATE(1211)] = 38983, - [SMALL_STATE(1212)] = 39032, - [SMALL_STATE(1213)] = 39118, - [SMALL_STATE(1214)] = 39168, - [SMALL_STATE(1215)] = 39246, - [SMALL_STATE(1216)] = 39324, - [SMALL_STATE(1217)] = 39374, - [SMALL_STATE(1218)] = 39460, - [SMALL_STATE(1219)] = 39510, - [SMALL_STATE(1220)] = 39560, - [SMALL_STATE(1221)] = 39643, - [SMALL_STATE(1222)] = 39726, - [SMALL_STATE(1223)] = 39791, - [SMALL_STATE(1224)] = 39874, - [SMALL_STATE(1225)] = 39941, - [SMALL_STATE(1226)] = 40024, - [SMALL_STATE(1227)] = 40099, - [SMALL_STATE(1228)] = 40172, - [SMALL_STATE(1229)] = 40235, - [SMALL_STATE(1230)] = 40318, - [SMALL_STATE(1231)] = 40373, - [SMALL_STATE(1232)] = 40450, - [SMALL_STATE(1233)] = 40507, - [SMALL_STATE(1234)] = 40588, - [SMALL_STATE(1235)] = 40671, - [SMALL_STATE(1236)] = 40748, - [SMALL_STATE(1237)] = 40831, - [SMALL_STATE(1238)] = 40886, - [SMALL_STATE(1239)] = 40963, - [SMALL_STATE(1240)] = 41046, - [SMALL_STATE(1241)] = 41127, - [SMALL_STATE(1242)] = 41182, - [SMALL_STATE(1243)] = 41265, - [SMALL_STATE(1244)] = 41346, - [SMALL_STATE(1245)] = 41429, - [SMALL_STATE(1246)] = 41512, - [SMALL_STATE(1247)] = 41595, - [SMALL_STATE(1248)] = 41678, - [SMALL_STATE(1249)] = 41759, - [SMALL_STATE(1250)] = 41842, - [SMALL_STATE(1251)] = 41923, - [SMALL_STATE(1252)] = 42006, - [SMALL_STATE(1253)] = 42089, - [SMALL_STATE(1254)] = 42172, - [SMALL_STATE(1255)] = 42255, - [SMALL_STATE(1256)] = 42336, - [SMALL_STATE(1257)] = 42419, - [SMALL_STATE(1258)] = 42500, - [SMALL_STATE(1259)] = 42583, - [SMALL_STATE(1260)] = 42644, - [SMALL_STATE(1261)] = 42727, - [SMALL_STATE(1262)] = 42810, - [SMALL_STATE(1263)] = 42893, - [SMALL_STATE(1264)] = 42976, - [SMALL_STATE(1265)] = 43057, - [SMALL_STATE(1266)] = 43128, - [SMALL_STATE(1267)] = 43211, - [SMALL_STATE(1268)] = 43294, - [SMALL_STATE(1269)] = 43375, - [SMALL_STATE(1270)] = 43458, - [SMALL_STATE(1271)] = 43535, - [SMALL_STATE(1272)] = 43616, - [SMALL_STATE(1273)] = 43699, - [SMALL_STATE(1274)] = 43782, - [SMALL_STATE(1275)] = 43865, - [SMALL_STATE(1276)] = 43948, - [SMALL_STATE(1277)] = 44031, - [SMALL_STATE(1278)] = 44108, - [SMALL_STATE(1279)] = 44177, - [SMALL_STATE(1280)] = 44260, - [SMALL_STATE(1281)] = 44319, - [SMALL_STATE(1282)] = 44402, - [SMALL_STATE(1283)] = 44485, - [SMALL_STATE(1284)] = 44568, - [SMALL_STATE(1285)] = 44649, - [SMALL_STATE(1286)] = 44732, - [SMALL_STATE(1287)] = 44815, - [SMALL_STATE(1288)] = 44898, - [SMALL_STATE(1289)] = 44981, - [SMALL_STATE(1290)] = 45064, - [SMALL_STATE(1291)] = 45145, - [SMALL_STATE(1292)] = 45228, - [SMALL_STATE(1293)] = 45311, - [SMALL_STATE(1294)] = 45394, - [SMALL_STATE(1295)] = 45475, - [SMALL_STATE(1296)] = 45558, - [SMALL_STATE(1297)] = 45635, - [SMALL_STATE(1298)] = 45716, - [SMALL_STATE(1299)] = 45796, - [SMALL_STATE(1300)] = 45876, - [SMALL_STATE(1301)] = 45956, - [SMALL_STATE(1302)] = 46024, - [SMALL_STATE(1303)] = 46104, - [SMALL_STATE(1304)] = 46184, - [SMALL_STATE(1305)] = 46264, - [SMALL_STATE(1306)] = 46344, - [SMALL_STATE(1307)] = 46424, - [SMALL_STATE(1308)] = 46504, - [SMALL_STATE(1309)] = 46584, - [SMALL_STATE(1310)] = 46664, - [SMALL_STATE(1311)] = 46744, - [SMALL_STATE(1312)] = 46824, - [SMALL_STATE(1313)] = 46904, - [SMALL_STATE(1314)] = 46984, - [SMALL_STATE(1315)] = 47064, - [SMALL_STATE(1316)] = 47144, - [SMALL_STATE(1317)] = 47224, - [SMALL_STATE(1318)] = 47304, - [SMALL_STATE(1319)] = 47384, - [SMALL_STATE(1320)] = 47452, - [SMALL_STATE(1321)] = 47532, - [SMALL_STATE(1322)] = 47612, - [SMALL_STATE(1323)] = 47692, - [SMALL_STATE(1324)] = 47772, - [SMALL_STATE(1325)] = 47852, - [SMALL_STATE(1326)] = 47932, - [SMALL_STATE(1327)] = 48012, - [SMALL_STATE(1328)] = 48092, - [SMALL_STATE(1329)] = 48172, - [SMALL_STATE(1330)] = 48252, - [SMALL_STATE(1331)] = 48332, - [SMALL_STATE(1332)] = 48412, - [SMALL_STATE(1333)] = 48492, - [SMALL_STATE(1334)] = 48572, - [SMALL_STATE(1335)] = 48637, - [SMALL_STATE(1336)] = 48702, - [SMALL_STATE(1337)] = 48767, - [SMALL_STATE(1338)] = 48832, - [SMALL_STATE(1339)] = 48897, - [SMALL_STATE(1340)] = 48937, - [SMALL_STATE(1341)] = 48977, - [SMALL_STATE(1342)] = 49017, - [SMALL_STATE(1343)] = 49069, - [SMALL_STATE(1344)] = 49121, - [SMALL_STATE(1345)] = 49151, - [SMALL_STATE(1346)] = 49181, - [SMALL_STATE(1347)] = 49226, - [SMALL_STATE(1348)] = 49266, - [SMALL_STATE(1349)] = 49295, - [SMALL_STATE(1350)] = 49324, - [SMALL_STATE(1351)] = 49353, - [SMALL_STATE(1352)] = 49390, - [SMALL_STATE(1353)] = 49419, - [SMALL_STATE(1354)] = 49448, - [SMALL_STATE(1355)] = 49485, - [SMALL_STATE(1356)] = 49514, - [SMALL_STATE(1357)] = 49543, - [SMALL_STATE(1358)] = 49572, - [SMALL_STATE(1359)] = 49598, - [SMALL_STATE(1360)] = 49624, - [SMALL_STATE(1361)] = 49656, - [SMALL_STATE(1362)] = 49710, - [SMALL_STATE(1363)] = 49742, - [SMALL_STATE(1364)] = 49768, - [SMALL_STATE(1365)] = 49800, - [SMALL_STATE(1366)] = 49854, - [SMALL_STATE(1367)] = 49879, - [SMALL_STATE(1368)] = 49912, - [SMALL_STATE(1369)] = 49935, - [SMALL_STATE(1370)] = 49960, - [SMALL_STATE(1371)] = 49985, - [SMALL_STATE(1372)] = 50010, - [SMALL_STATE(1373)] = 50035, - [SMALL_STATE(1374)] = 50057, - [SMALL_STATE(1375)] = 50079, - [SMALL_STATE(1376)] = 50103, - [SMALL_STATE(1377)] = 50127, - [SMALL_STATE(1378)] = 50149, - [SMALL_STATE(1379)] = 50173, - [SMALL_STATE(1380)] = 50197, - [SMALL_STATE(1381)] = 50241, - [SMALL_STATE(1382)] = 50285, - [SMALL_STATE(1383)] = 50309, - [SMALL_STATE(1384)] = 50333, - [SMALL_STATE(1385)] = 50379, - [SMALL_STATE(1386)] = 50401, - [SMALL_STATE(1387)] = 50425, - [SMALL_STATE(1388)] = 50450, - [SMALL_STATE(1389)] = 50471, - [SMALL_STATE(1390)] = 50516, - [SMALL_STATE(1391)] = 50539, - [SMALL_STATE(1392)] = 50562, - [SMALL_STATE(1393)] = 50589, - [SMALL_STATE(1394)] = 50610, - [SMALL_STATE(1395)] = 50635, - [SMALL_STATE(1396)] = 50660, - [SMALL_STATE(1397)] = 50685, - [SMALL_STATE(1398)] = 50710, - [SMALL_STATE(1399)] = 50733, - [SMALL_STATE(1400)] = 50756, - [SMALL_STATE(1401)] = 50779, - [SMALL_STATE(1402)] = 50802, - [SMALL_STATE(1403)] = 50827, - [SMALL_STATE(1404)] = 50850, - [SMALL_STATE(1405)] = 50871, - [SMALL_STATE(1406)] = 50894, - [SMALL_STATE(1407)] = 50915, - [SMALL_STATE(1408)] = 50936, - [SMALL_STATE(1409)] = 50956, - [SMALL_STATE(1410)] = 50976, - [SMALL_STATE(1411)] = 50996, - [SMALL_STATE(1412)] = 51016, - [SMALL_STATE(1413)] = 51036, - [SMALL_STATE(1414)] = 51056, - [SMALL_STATE(1415)] = 51076, - [SMALL_STATE(1416)] = 51096, - [SMALL_STATE(1417)] = 51118, - [SMALL_STATE(1418)] = 51138, - [SMALL_STATE(1419)] = 51160, - [SMALL_STATE(1420)] = 51184, - [SMALL_STATE(1421)] = 51204, - [SMALL_STATE(1422)] = 51224, - [SMALL_STATE(1423)] = 51244, - [SMALL_STATE(1424)] = 51264, - [SMALL_STATE(1425)] = 51284, - [SMALL_STATE(1426)] = 51304, - [SMALL_STATE(1427)] = 51324, - [SMALL_STATE(1428)] = 51344, - [SMALL_STATE(1429)] = 51364, - [SMALL_STATE(1430)] = 51384, - [SMALL_STATE(1431)] = 51404, - [SMALL_STATE(1432)] = 51426, - [SMALL_STATE(1433)] = 51446, - [SMALL_STATE(1434)] = 51466, - [SMALL_STATE(1435)] = 51486, - [SMALL_STATE(1436)] = 51507, - [SMALL_STATE(1437)] = 51532, - [SMALL_STATE(1438)] = 51557, - [SMALL_STATE(1439)] = 51578, - [SMALL_STATE(1440)] = 51601, - [SMALL_STATE(1441)] = 51626, - [SMALL_STATE(1442)] = 51649, - [SMALL_STATE(1443)] = 51674, - [SMALL_STATE(1444)] = 51697, - [SMALL_STATE(1445)] = 51720, - [SMALL_STATE(1446)] = 51743, - [SMALL_STATE(1447)] = 51766, - [SMALL_STATE(1448)] = 51789, - [SMALL_STATE(1449)] = 51812, - [SMALL_STATE(1450)] = 51837, - [SMALL_STATE(1451)] = 51862, - [SMALL_STATE(1452)] = 51883, - [SMALL_STATE(1453)] = 51906, - [SMALL_STATE(1454)] = 51931, - [SMALL_STATE(1455)] = 51954, - [SMALL_STATE(1456)] = 51977, - [SMALL_STATE(1457)] = 52000, - [SMALL_STATE(1458)] = 52025, - [SMALL_STATE(1459)] = 52045, - [SMALL_STATE(1460)] = 52069, - [SMALL_STATE(1461)] = 52089, - [SMALL_STATE(1462)] = 52121, - [SMALL_STATE(1463)] = 52153, - [SMALL_STATE(1464)] = 52173, - [SMALL_STATE(1465)] = 52193, - [SMALL_STATE(1466)] = 52213, - [SMALL_STATE(1467)] = 52233, - [SMALL_STATE(1468)] = 52253, - [SMALL_STATE(1469)] = 52273, - [SMALL_STATE(1470)] = 52299, - [SMALL_STATE(1471)] = 52319, - [SMALL_STATE(1472)] = 52351, - [SMALL_STATE(1473)] = 52371, - [SMALL_STATE(1474)] = 52391, - [SMALL_STATE(1475)] = 52423, - [SMALL_STATE(1476)] = 52447, - [SMALL_STATE(1477)] = 52479, - [SMALL_STATE(1478)] = 52499, - [SMALL_STATE(1479)] = 52531, - [SMALL_STATE(1480)] = 52557, - [SMALL_STATE(1481)] = 52577, - [SMALL_STATE(1482)] = 52597, - [SMALL_STATE(1483)] = 52617, - [SMALL_STATE(1484)] = 52637, - [SMALL_STATE(1485)] = 52669, - [SMALL_STATE(1486)] = 52689, - [SMALL_STATE(1487)] = 52709, - [SMALL_STATE(1488)] = 52733, - [SMALL_STATE(1489)] = 52753, - [SMALL_STATE(1490)] = 52773, - [SMALL_STATE(1491)] = 52797, - [SMALL_STATE(1492)] = 52817, - [SMALL_STATE(1493)] = 52837, - [SMALL_STATE(1494)] = 52857, - [SMALL_STATE(1495)] = 52877, - [SMALL_STATE(1496)] = 52897, - [SMALL_STATE(1497)] = 52917, - [SMALL_STATE(1498)] = 52937, - [SMALL_STATE(1499)] = 52969, - [SMALL_STATE(1500)] = 52989, - [SMALL_STATE(1501)] = 53009, - [SMALL_STATE(1502)] = 53029, - [SMALL_STATE(1503)] = 53049, - [SMALL_STATE(1504)] = 53082, - [SMALL_STATE(1505)] = 53111, - [SMALL_STATE(1506)] = 53138, - [SMALL_STATE(1507)] = 53161, - [SMALL_STATE(1508)] = 53194, - [SMALL_STATE(1509)] = 53219, - [SMALL_STATE(1510)] = 53250, - [SMALL_STATE(1511)] = 53283, - [SMALL_STATE(1512)] = 53316, - [SMALL_STATE(1513)] = 53339, - [SMALL_STATE(1514)] = 53362, - [SMALL_STATE(1515)] = 53384, - [SMALL_STATE(1516)] = 53410, - [SMALL_STATE(1517)] = 53436, - [SMALL_STATE(1518)] = 53462, - [SMALL_STATE(1519)] = 53484, - [SMALL_STATE(1520)] = 53514, - [SMALL_STATE(1521)] = 53544, - [SMALL_STATE(1522)] = 53574, - [SMALL_STATE(1523)] = 53600, - [SMALL_STATE(1524)] = 53632, - [SMALL_STATE(1525)] = 53654, - [SMALL_STATE(1526)] = 53684, - [SMALL_STATE(1527)] = 53714, - [SMALL_STATE(1528)] = 53736, - [SMALL_STATE(1529)] = 53766, - [SMALL_STATE(1530)] = 53796, - [SMALL_STATE(1531)] = 53818, - [SMALL_STATE(1532)] = 53844, - [SMALL_STATE(1533)] = 53874, - [SMALL_STATE(1534)] = 53904, - [SMALL_STATE(1535)] = 53934, - [SMALL_STATE(1536)] = 53960, - [SMALL_STATE(1537)] = 53990, - [SMALL_STATE(1538)] = 54022, - [SMALL_STATE(1539)] = 54052, - [SMALL_STATE(1540)] = 54078, - [SMALL_STATE(1541)] = 54108, - [SMALL_STATE(1542)] = 54138, - [SMALL_STATE(1543)] = 54170, - [SMALL_STATE(1544)] = 54200, - [SMALL_STATE(1545)] = 54230, - [SMALL_STATE(1546)] = 54256, - [SMALL_STATE(1547)] = 54286, - [SMALL_STATE(1548)] = 54308, - [SMALL_STATE(1549)] = 54334, - [SMALL_STATE(1550)] = 54360, - [SMALL_STATE(1551)] = 54390, - [SMALL_STATE(1552)] = 54416, - [SMALL_STATE(1553)] = 54446, - [SMALL_STATE(1554)] = 54476, - [SMALL_STATE(1555)] = 54506, - [SMALL_STATE(1556)] = 54538, - [SMALL_STATE(1557)] = 54565, - [SMALL_STATE(1558)] = 54592, - [SMALL_STATE(1559)] = 54619, - [SMALL_STATE(1560)] = 54634, - [SMALL_STATE(1561)] = 54657, - [SMALL_STATE(1562)] = 54686, - [SMALL_STATE(1563)] = 54709, - [SMALL_STATE(1564)] = 54738, - [SMALL_STATE(1565)] = 54759, - [SMALL_STATE(1566)] = 54786, - [SMALL_STATE(1567)] = 54805, - [SMALL_STATE(1568)] = 54824, - [SMALL_STATE(1569)] = 54851, - [SMALL_STATE(1570)] = 54878, - [SMALL_STATE(1571)] = 54905, - [SMALL_STATE(1572)] = 54924, - [SMALL_STATE(1573)] = 54945, - [SMALL_STATE(1574)] = 54974, - [SMALL_STATE(1575)] = 54993, - [SMALL_STATE(1576)] = 55020, - [SMALL_STATE(1577)] = 55049, - [SMALL_STATE(1578)] = 55076, - [SMALL_STATE(1579)] = 55103, - [SMALL_STATE(1580)] = 55130, - [SMALL_STATE(1581)] = 55149, - [SMALL_STATE(1582)] = 55176, - [SMALL_STATE(1583)] = 55195, - [SMALL_STATE(1584)] = 55224, - [SMALL_STATE(1585)] = 55251, - [SMALL_STATE(1586)] = 55274, - [SMALL_STATE(1587)] = 55301, - [SMALL_STATE(1588)] = 55320, - [SMALL_STATE(1589)] = 55347, - [SMALL_STATE(1590)] = 55366, - [SMALL_STATE(1591)] = 55385, - [SMALL_STATE(1592)] = 55410, - [SMALL_STATE(1593)] = 55429, - [SMALL_STATE(1594)] = 55448, - [SMALL_STATE(1595)] = 55471, - [SMALL_STATE(1596)] = 55500, - [SMALL_STATE(1597)] = 55526, - [SMALL_STATE(1598)] = 55552, - [SMALL_STATE(1599)] = 55576, - [SMALL_STATE(1600)] = 55590, - [SMALL_STATE(1601)] = 55612, - [SMALL_STATE(1602)] = 55638, - [SMALL_STATE(1603)] = 55652, - [SMALL_STATE(1604)] = 55678, - [SMALL_STATE(1605)] = 55704, - [SMALL_STATE(1606)] = 55718, - [SMALL_STATE(1607)] = 55744, - [SMALL_STATE(1608)] = 55760, - [SMALL_STATE(1609)] = 55786, - [SMALL_STATE(1610)] = 55812, - [SMALL_STATE(1611)] = 55828, - [SMALL_STATE(1612)] = 55854, - [SMALL_STATE(1613)] = 55868, - [SMALL_STATE(1614)] = 55894, - [SMALL_STATE(1615)] = 55908, - [SMALL_STATE(1616)] = 55924, - [SMALL_STATE(1617)] = 55948, - [SMALL_STATE(1618)] = 55974, - [SMALL_STATE(1619)] = 56000, - [SMALL_STATE(1620)] = 56026, - [SMALL_STATE(1621)] = 56042, - [SMALL_STATE(1622)] = 56068, - [SMALL_STATE(1623)] = 56094, - [SMALL_STATE(1624)] = 56120, - [SMALL_STATE(1625)] = 56146, - [SMALL_STATE(1626)] = 56172, - [SMALL_STATE(1627)] = 56198, - [SMALL_STATE(1628)] = 56214, - [SMALL_STATE(1629)] = 56238, - [SMALL_STATE(1630)] = 56252, - [SMALL_STATE(1631)] = 56268, - [SMALL_STATE(1632)] = 56294, - [SMALL_STATE(1633)] = 56318, - [SMALL_STATE(1634)] = 56340, - [SMALL_STATE(1635)] = 56364, - [SMALL_STATE(1636)] = 56378, - [SMALL_STATE(1637)] = 56394, - [SMALL_STATE(1638)] = 56420, - [SMALL_STATE(1639)] = 56436, - [SMALL_STATE(1640)] = 56462, - [SMALL_STATE(1641)] = 56488, - [SMALL_STATE(1642)] = 56514, - [SMALL_STATE(1643)] = 56537, - [SMALL_STATE(1644)] = 56560, - [SMALL_STATE(1645)] = 56583, - [SMALL_STATE(1646)] = 56606, - [SMALL_STATE(1647)] = 56629, - [SMALL_STATE(1648)] = 56652, - [SMALL_STATE(1649)] = 56669, - [SMALL_STATE(1650)] = 56686, - [SMALL_STATE(1651)] = 56703, - [SMALL_STATE(1652)] = 56726, - [SMALL_STATE(1653)] = 56749, - [SMALL_STATE(1654)] = 56768, - [SMALL_STATE(1655)] = 56783, - [SMALL_STATE(1656)] = 56806, - [SMALL_STATE(1657)] = 56829, - [SMALL_STATE(1658)] = 56852, - [SMALL_STATE(1659)] = 56875, - [SMALL_STATE(1660)] = 56898, - [SMALL_STATE(1661)] = 56921, - [SMALL_STATE(1662)] = 56936, - [SMALL_STATE(1663)] = 56959, - [SMALL_STATE(1664)] = 56982, - [SMALL_STATE(1665)] = 57005, - [SMALL_STATE(1666)] = 57024, - [SMALL_STATE(1667)] = 57047, - [SMALL_STATE(1668)] = 57070, - [SMALL_STATE(1669)] = 57087, - [SMALL_STATE(1670)] = 57110, - [SMALL_STATE(1671)] = 57133, - [SMALL_STATE(1672)] = 57154, - [SMALL_STATE(1673)] = 57177, - [SMALL_STATE(1674)] = 57200, - [SMALL_STATE(1675)] = 57217, - [SMALL_STATE(1676)] = 57240, - [SMALL_STATE(1677)] = 57257, - [SMALL_STATE(1678)] = 57280, - [SMALL_STATE(1679)] = 57297, - [SMALL_STATE(1680)] = 57314, - [SMALL_STATE(1681)] = 57333, - [SMALL_STATE(1682)] = 57356, - [SMALL_STATE(1683)] = 57379, - [SMALL_STATE(1684)] = 57402, - [SMALL_STATE(1685)] = 57425, - [SMALL_STATE(1686)] = 57448, - [SMALL_STATE(1687)] = 57471, - [SMALL_STATE(1688)] = 57492, - [SMALL_STATE(1689)] = 57515, - [SMALL_STATE(1690)] = 57538, - [SMALL_STATE(1691)] = 57561, - [SMALL_STATE(1692)] = 57584, - [SMALL_STATE(1693)] = 57607, - [SMALL_STATE(1694)] = 57630, - [SMALL_STATE(1695)] = 57653, - [SMALL_STATE(1696)] = 57676, - [SMALL_STATE(1697)] = 57699, - [SMALL_STATE(1698)] = 57722, - [SMALL_STATE(1699)] = 57739, - [SMALL_STATE(1700)] = 57762, - [SMALL_STATE(1701)] = 57785, - [SMALL_STATE(1702)] = 57808, - [SMALL_STATE(1703)] = 57831, - [SMALL_STATE(1704)] = 57852, - [SMALL_STATE(1705)] = 57869, - [SMALL_STATE(1706)] = 57890, - [SMALL_STATE(1707)] = 57913, - [SMALL_STATE(1708)] = 57936, - [SMALL_STATE(1709)] = 57957, - [SMALL_STATE(1710)] = 57980, - [SMALL_STATE(1711)] = 57997, - [SMALL_STATE(1712)] = 58020, - [SMALL_STATE(1713)] = 58043, - [SMALL_STATE(1714)] = 58066, - [SMALL_STATE(1715)] = 58089, - [SMALL_STATE(1716)] = 58112, - [SMALL_STATE(1717)] = 58133, - [SMALL_STATE(1718)] = 58156, - [SMALL_STATE(1719)] = 58179, - [SMALL_STATE(1720)] = 58202, - [SMALL_STATE(1721)] = 58225, - [SMALL_STATE(1722)] = 58248, - [SMALL_STATE(1723)] = 58265, - [SMALL_STATE(1724)] = 58288, - [SMALL_STATE(1725)] = 58311, - [SMALL_STATE(1726)] = 58334, - [SMALL_STATE(1727)] = 58357, - [SMALL_STATE(1728)] = 58380, - [SMALL_STATE(1729)] = 58397, - [SMALL_STATE(1730)] = 58420, - [SMALL_STATE(1731)] = 58443, - [SMALL_STATE(1732)] = 58466, - [SMALL_STATE(1733)] = 58483, - [SMALL_STATE(1734)] = 58500, - [SMALL_STATE(1735)] = 58523, - [SMALL_STATE(1736)] = 58546, - [SMALL_STATE(1737)] = 58569, - [SMALL_STATE(1738)] = 58592, - [SMALL_STATE(1739)] = 58604, - [SMALL_STATE(1740)] = 58616, - [SMALL_STATE(1741)] = 58634, - [SMALL_STATE(1742)] = 58650, - [SMALL_STATE(1743)] = 58666, - [SMALL_STATE(1744)] = 58678, - [SMALL_STATE(1745)] = 58694, - [SMALL_STATE(1746)] = 58706, - [SMALL_STATE(1747)] = 58718, - [SMALL_STATE(1748)] = 58730, - [SMALL_STATE(1749)] = 58748, - [SMALL_STATE(1750)] = 58766, - [SMALL_STATE(1751)] = 58782, - [SMALL_STATE(1752)] = 58800, - [SMALL_STATE(1753)] = 58812, - [SMALL_STATE(1754)] = 58828, - [SMALL_STATE(1755)] = 58840, - [SMALL_STATE(1756)] = 58860, - [SMALL_STATE(1757)] = 58872, - [SMALL_STATE(1758)] = 58890, - [SMALL_STATE(1759)] = 58906, - [SMALL_STATE(1760)] = 58918, - [SMALL_STATE(1761)] = 58930, - [SMALL_STATE(1762)] = 58950, - [SMALL_STATE(1763)] = 58966, - [SMALL_STATE(1764)] = 58986, - [SMALL_STATE(1765)] = 58998, - [SMALL_STATE(1766)] = 59014, - [SMALL_STATE(1767)] = 59026, - [SMALL_STATE(1768)] = 59040, - [SMALL_STATE(1769)] = 59060, - [SMALL_STATE(1770)] = 59076, - [SMALL_STATE(1771)] = 59088, - [SMALL_STATE(1772)] = 59108, - [SMALL_STATE(1773)] = 59124, - [SMALL_STATE(1774)] = 59142, - [SMALL_STATE(1775)] = 59160, - [SMALL_STATE(1776)] = 59174, - [SMALL_STATE(1777)] = 59186, - [SMALL_STATE(1778)] = 59198, - [SMALL_STATE(1779)] = 59210, - [SMALL_STATE(1780)] = 59224, - [SMALL_STATE(1781)] = 59236, - [SMALL_STATE(1782)] = 59248, - [SMALL_STATE(1783)] = 59266, - [SMALL_STATE(1784)] = 59282, - [SMALL_STATE(1785)] = 59300, - [SMALL_STATE(1786)] = 59320, - [SMALL_STATE(1787)] = 59332, - [SMALL_STATE(1788)] = 59348, - [SMALL_STATE(1789)] = 59364, - [SMALL_STATE(1790)] = 59380, - [SMALL_STATE(1791)] = 59396, - [SMALL_STATE(1792)] = 59408, - [SMALL_STATE(1793)] = 59426, - [SMALL_STATE(1794)] = 59443, - [SMALL_STATE(1795)] = 59460, - [SMALL_STATE(1796)] = 59475, - [SMALL_STATE(1797)] = 59492, - [SMALL_STATE(1798)] = 59509, - [SMALL_STATE(1799)] = 59524, - [SMALL_STATE(1800)] = 59541, - [SMALL_STATE(1801)] = 59554, - [SMALL_STATE(1802)] = 59567, - [SMALL_STATE(1803)] = 59584, - [SMALL_STATE(1804)] = 59601, - [SMALL_STATE(1805)] = 59614, - [SMALL_STATE(1806)] = 59631, - [SMALL_STATE(1807)] = 59648, - [SMALL_STATE(1808)] = 59661, - [SMALL_STATE(1809)] = 59678, - [SMALL_STATE(1810)] = 59695, - [SMALL_STATE(1811)] = 59710, - [SMALL_STATE(1812)] = 59727, - [SMALL_STATE(1813)] = 59744, - [SMALL_STATE(1814)] = 59759, - [SMALL_STATE(1815)] = 59776, - [SMALL_STATE(1816)] = 59793, - [SMALL_STATE(1817)] = 59810, - [SMALL_STATE(1818)] = 59827, - [SMALL_STATE(1819)] = 59844, - [SMALL_STATE(1820)] = 59861, - [SMALL_STATE(1821)] = 59878, - [SMALL_STATE(1822)] = 59893, - [SMALL_STATE(1823)] = 59908, - [SMALL_STATE(1824)] = 59925, - [SMALL_STATE(1825)] = 59942, - [SMALL_STATE(1826)] = 59959, - [SMALL_STATE(1827)] = 59974, - [SMALL_STATE(1828)] = 59991, - [SMALL_STATE(1829)] = 60008, - [SMALL_STATE(1830)] = 60023, - [SMALL_STATE(1831)] = 60040, - [SMALL_STATE(1832)] = 60057, - [SMALL_STATE(1833)] = 60074, - [SMALL_STATE(1834)] = 60091, - [SMALL_STATE(1835)] = 60108, - [SMALL_STATE(1836)] = 60125, - [SMALL_STATE(1837)] = 60142, - [SMALL_STATE(1838)] = 60159, - [SMALL_STATE(1839)] = 60176, - [SMALL_STATE(1840)] = 60193, - [SMALL_STATE(1841)] = 60208, - [SMALL_STATE(1842)] = 60223, - [SMALL_STATE(1843)] = 60240, - [SMALL_STATE(1844)] = 60255, - [SMALL_STATE(1845)] = 60272, - [SMALL_STATE(1846)] = 60289, - [SMALL_STATE(1847)] = 60306, - [SMALL_STATE(1848)] = 60321, - [SMALL_STATE(1849)] = 60338, - [SMALL_STATE(1850)] = 60355, - [SMALL_STATE(1851)] = 60370, - [SMALL_STATE(1852)] = 60385, - [SMALL_STATE(1853)] = 60400, - [SMALL_STATE(1854)] = 60413, - [SMALL_STATE(1855)] = 60428, - [SMALL_STATE(1856)] = 60445, - [SMALL_STATE(1857)] = 60462, - [SMALL_STATE(1858)] = 60479, - [SMALL_STATE(1859)] = 60496, - [SMALL_STATE(1860)] = 60513, - [SMALL_STATE(1861)] = 60528, - [SMALL_STATE(1862)] = 60541, - [SMALL_STATE(1863)] = 60556, - [SMALL_STATE(1864)] = 60573, - [SMALL_STATE(1865)] = 60588, - [SMALL_STATE(1866)] = 60605, - [SMALL_STATE(1867)] = 60622, - [SMALL_STATE(1868)] = 60639, - [SMALL_STATE(1869)] = 60656, - [SMALL_STATE(1870)] = 60673, - [SMALL_STATE(1871)] = 60690, - [SMALL_STATE(1872)] = 60707, - [SMALL_STATE(1873)] = 60722, - [SMALL_STATE(1874)] = 60739, - [SMALL_STATE(1875)] = 60756, - [SMALL_STATE(1876)] = 60773, - [SMALL_STATE(1877)] = 60790, - [SMALL_STATE(1878)] = 60805, - [SMALL_STATE(1879)] = 60820, - [SMALL_STATE(1880)] = 60835, - [SMALL_STATE(1881)] = 60848, - [SMALL_STATE(1882)] = 60863, - [SMALL_STATE(1883)] = 60876, - [SMALL_STATE(1884)] = 60891, - [SMALL_STATE(1885)] = 60908, - [SMALL_STATE(1886)] = 60925, - [SMALL_STATE(1887)] = 60942, - [SMALL_STATE(1888)] = 60957, - [SMALL_STATE(1889)] = 60974, - [SMALL_STATE(1890)] = 60991, - [SMALL_STATE(1891)] = 61004, - [SMALL_STATE(1892)] = 61021, - [SMALL_STATE(1893)] = 61034, - [SMALL_STATE(1894)] = 61051, - [SMALL_STATE(1895)] = 61068, - [SMALL_STATE(1896)] = 61082, - [SMALL_STATE(1897)] = 61096, - [SMALL_STATE(1898)] = 61108, - [SMALL_STATE(1899)] = 61122, - [SMALL_STATE(1900)] = 61136, - [SMALL_STATE(1901)] = 61150, - [SMALL_STATE(1902)] = 61164, - [SMALL_STATE(1903)] = 61176, - [SMALL_STATE(1904)] = 61188, - [SMALL_STATE(1905)] = 61202, - [SMALL_STATE(1906)] = 61216, - [SMALL_STATE(1907)] = 61230, - [SMALL_STATE(1908)] = 61244, - [SMALL_STATE(1909)] = 61258, - [SMALL_STATE(1910)] = 61272, - [SMALL_STATE(1911)] = 61286, - [SMALL_STATE(1912)] = 61300, - [SMALL_STATE(1913)] = 61314, - [SMALL_STATE(1914)] = 61328, - [SMALL_STATE(1915)] = 61342, - [SMALL_STATE(1916)] = 61356, - [SMALL_STATE(1917)] = 61370, - [SMALL_STATE(1918)] = 61382, - [SMALL_STATE(1919)] = 61394, - [SMALL_STATE(1920)] = 61408, - [SMALL_STATE(1921)] = 61420, - [SMALL_STATE(1922)] = 61434, - [SMALL_STATE(1923)] = 61448, - [SMALL_STATE(1924)] = 61462, - [SMALL_STATE(1925)] = 61476, - [SMALL_STATE(1926)] = 61488, - [SMALL_STATE(1927)] = 61502, - [SMALL_STATE(1928)] = 61512, - [SMALL_STATE(1929)] = 61526, - [SMALL_STATE(1930)] = 61538, - [SMALL_STATE(1931)] = 61550, - [SMALL_STATE(1932)] = 61564, - [SMALL_STATE(1933)] = 61578, - [SMALL_STATE(1934)] = 61590, - [SMALL_STATE(1935)] = 61604, - [SMALL_STATE(1936)] = 61614, - [SMALL_STATE(1937)] = 61626, - [SMALL_STATE(1938)] = 61640, - [SMALL_STATE(1939)] = 61650, - [SMALL_STATE(1940)] = 61664, - [SMALL_STATE(1941)] = 61678, - [SMALL_STATE(1942)] = 61692, - [SMALL_STATE(1943)] = 61706, - [SMALL_STATE(1944)] = 61720, - [SMALL_STATE(1945)] = 61734, - [SMALL_STATE(1946)] = 61744, - [SMALL_STATE(1947)] = 61758, - [SMALL_STATE(1948)] = 61772, - [SMALL_STATE(1949)] = 61786, - [SMALL_STATE(1950)] = 61800, - [SMALL_STATE(1951)] = 61810, - [SMALL_STATE(1952)] = 61824, - [SMALL_STATE(1953)] = 61838, - [SMALL_STATE(1954)] = 61852, - [SMALL_STATE(1955)] = 61866, - [SMALL_STATE(1956)] = 61878, - [SMALL_STATE(1957)] = 61888, - [SMALL_STATE(1958)] = 61902, - [SMALL_STATE(1959)] = 61914, - [SMALL_STATE(1960)] = 61924, - [SMALL_STATE(1961)] = 61938, - [SMALL_STATE(1962)] = 61948, - [SMALL_STATE(1963)] = 61962, - [SMALL_STATE(1964)] = 61976, - [SMALL_STATE(1965)] = 61990, - [SMALL_STATE(1966)] = 62004, - [SMALL_STATE(1967)] = 62018, - [SMALL_STATE(1968)] = 62032, - [SMALL_STATE(1969)] = 62046, - [SMALL_STATE(1970)] = 62060, - [SMALL_STATE(1971)] = 62074, - [SMALL_STATE(1972)] = 62088, - [SMALL_STATE(1973)] = 62102, - [SMALL_STATE(1974)] = 62116, - [SMALL_STATE(1975)] = 62130, - [SMALL_STATE(1976)] = 62144, - [SMALL_STATE(1977)] = 62158, - [SMALL_STATE(1978)] = 62172, - [SMALL_STATE(1979)] = 62182, - [SMALL_STATE(1980)] = 62194, - [SMALL_STATE(1981)] = 62208, - [SMALL_STATE(1982)] = 62218, - [SMALL_STATE(1983)] = 62232, - [SMALL_STATE(1984)] = 62246, - [SMALL_STATE(1985)] = 62260, - [SMALL_STATE(1986)] = 62274, - [SMALL_STATE(1987)] = 62288, - [SMALL_STATE(1988)] = 62302, - [SMALL_STATE(1989)] = 62316, - [SMALL_STATE(1990)] = 62330, - [SMALL_STATE(1991)] = 62344, - [SMALL_STATE(1992)] = 62356, - [SMALL_STATE(1993)] = 62370, - [SMALL_STATE(1994)] = 62384, - [SMALL_STATE(1995)] = 62398, - [SMALL_STATE(1996)] = 62412, - [SMALL_STATE(1997)] = 62426, - [SMALL_STATE(1998)] = 62436, - [SMALL_STATE(1999)] = 62450, - [SMALL_STATE(2000)] = 62464, - [SMALL_STATE(2001)] = 62478, - [SMALL_STATE(2002)] = 62492, - [SMALL_STATE(2003)] = 62506, - [SMALL_STATE(2004)] = 62520, - [SMALL_STATE(2005)] = 62534, - [SMALL_STATE(2006)] = 62548, - [SMALL_STATE(2007)] = 62562, - [SMALL_STATE(2008)] = 62576, - [SMALL_STATE(2009)] = 62590, - [SMALL_STATE(2010)] = 62600, - [SMALL_STATE(2011)] = 62614, - [SMALL_STATE(2012)] = 62628, - [SMALL_STATE(2013)] = 62642, - [SMALL_STATE(2014)] = 62656, - [SMALL_STATE(2015)] = 62670, - [SMALL_STATE(2016)] = 62680, - [SMALL_STATE(2017)] = 62690, - [SMALL_STATE(2018)] = 62704, - [SMALL_STATE(2019)] = 62718, - [SMALL_STATE(2020)] = 62728, - [SMALL_STATE(2021)] = 62738, - [SMALL_STATE(2022)] = 62752, - [SMALL_STATE(2023)] = 62766, - [SMALL_STATE(2024)] = 62780, - [SMALL_STATE(2025)] = 62794, - [SMALL_STATE(2026)] = 62806, - [SMALL_STATE(2027)] = 62818, - [SMALL_STATE(2028)] = 62832, - [SMALL_STATE(2029)] = 62846, - [SMALL_STATE(2030)] = 62860, - [SMALL_STATE(2031)] = 62874, - [SMALL_STATE(2032)] = 62888, - [SMALL_STATE(2033)] = 62900, - [SMALL_STATE(2034)] = 62914, - [SMALL_STATE(2035)] = 62928, - [SMALL_STATE(2036)] = 62938, - [SMALL_STATE(2037)] = 62952, - [SMALL_STATE(2038)] = 62966, - [SMALL_STATE(2039)] = 62980, - [SMALL_STATE(2040)] = 62994, - [SMALL_STATE(2041)] = 63008, - [SMALL_STATE(2042)] = 63022, - [SMALL_STATE(2043)] = 63036, - [SMALL_STATE(2044)] = 63050, - [SMALL_STATE(2045)] = 63064, - [SMALL_STATE(2046)] = 63076, - [SMALL_STATE(2047)] = 63090, - [SMALL_STATE(2048)] = 63104, - [SMALL_STATE(2049)] = 63118, - [SMALL_STATE(2050)] = 63132, - [SMALL_STATE(2051)] = 63146, - [SMALL_STATE(2052)] = 63160, - [SMALL_STATE(2053)] = 63174, - [SMALL_STATE(2054)] = 63188, - [SMALL_STATE(2055)] = 63202, - [SMALL_STATE(2056)] = 63216, - [SMALL_STATE(2057)] = 63230, - [SMALL_STATE(2058)] = 63242, - [SMALL_STATE(2059)] = 63256, - [SMALL_STATE(2060)] = 63266, - [SMALL_STATE(2061)] = 63280, - [SMALL_STATE(2062)] = 63292, - [SMALL_STATE(2063)] = 63306, - [SMALL_STATE(2064)] = 63320, - [SMALL_STATE(2065)] = 63330, - [SMALL_STATE(2066)] = 63344, - [SMALL_STATE(2067)] = 63354, - [SMALL_STATE(2068)] = 63364, - [SMALL_STATE(2069)] = 63378, - [SMALL_STATE(2070)] = 63388, - [SMALL_STATE(2071)] = 63402, - [SMALL_STATE(2072)] = 63412, - [SMALL_STATE(2073)] = 63422, - [SMALL_STATE(2074)] = 63432, - [SMALL_STATE(2075)] = 63446, - [SMALL_STATE(2076)] = 63460, - [SMALL_STATE(2077)] = 63470, - [SMALL_STATE(2078)] = 63482, - [SMALL_STATE(2079)] = 63494, - [SMALL_STATE(2080)] = 63508, - [SMALL_STATE(2081)] = 63522, - [SMALL_STATE(2082)] = 63536, - [SMALL_STATE(2083)] = 63550, - [SMALL_STATE(2084)] = 63564, - [SMALL_STATE(2085)] = 63578, - [SMALL_STATE(2086)] = 63592, - [SMALL_STATE(2087)] = 63604, - [SMALL_STATE(2088)] = 63618, - [SMALL_STATE(2089)] = 63632, - [SMALL_STATE(2090)] = 63646, - [SMALL_STATE(2091)] = 63660, - [SMALL_STATE(2092)] = 63672, - [SMALL_STATE(2093)] = 63686, - [SMALL_STATE(2094)] = 63700, - [SMALL_STATE(2095)] = 63714, - [SMALL_STATE(2096)] = 63726, - [SMALL_STATE(2097)] = 63740, - [SMALL_STATE(2098)] = 63754, - [SMALL_STATE(2099)] = 63768, - [SMALL_STATE(2100)] = 63782, - [SMALL_STATE(2101)] = 63796, - [SMALL_STATE(2102)] = 63810, - [SMALL_STATE(2103)] = 63822, - [SMALL_STATE(2104)] = 63834, - [SMALL_STATE(2105)] = 63848, - [SMALL_STATE(2106)] = 63862, - [SMALL_STATE(2107)] = 63874, - [SMALL_STATE(2108)] = 63888, - [SMALL_STATE(2109)] = 63902, - [SMALL_STATE(2110)] = 63916, - [SMALL_STATE(2111)] = 63930, - [SMALL_STATE(2112)] = 63944, - [SMALL_STATE(2113)] = 63958, - [SMALL_STATE(2114)] = 63972, - [SMALL_STATE(2115)] = 63986, - [SMALL_STATE(2116)] = 63998, - [SMALL_STATE(2117)] = 64012, - [SMALL_STATE(2118)] = 64026, - [SMALL_STATE(2119)] = 64040, - [SMALL_STATE(2120)] = 64054, - [SMALL_STATE(2121)] = 64068, - [SMALL_STATE(2122)] = 64082, - [SMALL_STATE(2123)] = 64096, - [SMALL_STATE(2124)] = 64110, - [SMALL_STATE(2125)] = 64124, - [SMALL_STATE(2126)] = 64138, - [SMALL_STATE(2127)] = 64152, - [SMALL_STATE(2128)] = 64166, - [SMALL_STATE(2129)] = 64178, - [SMALL_STATE(2130)] = 64192, - [SMALL_STATE(2131)] = 64206, - [SMALL_STATE(2132)] = 64220, - [SMALL_STATE(2133)] = 64232, - [SMALL_STATE(2134)] = 64244, - [SMALL_STATE(2135)] = 64258, - [SMALL_STATE(2136)] = 64272, - [SMALL_STATE(2137)] = 64282, - [SMALL_STATE(2138)] = 64296, - [SMALL_STATE(2139)] = 64306, - [SMALL_STATE(2140)] = 64320, - [SMALL_STATE(2141)] = 64334, - [SMALL_STATE(2142)] = 64348, - [SMALL_STATE(2143)] = 64360, - [SMALL_STATE(2144)] = 64374, - [SMALL_STATE(2145)] = 64388, - [SMALL_STATE(2146)] = 64402, - [SMALL_STATE(2147)] = 64416, - [SMALL_STATE(2148)] = 64430, - [SMALL_STATE(2149)] = 64444, - [SMALL_STATE(2150)] = 64458, - [SMALL_STATE(2151)] = 64472, - [SMALL_STATE(2152)] = 64486, - [SMALL_STATE(2153)] = 64500, - [SMALL_STATE(2154)] = 64512, - [SMALL_STATE(2155)] = 64522, - [SMALL_STATE(2156)] = 64536, - [SMALL_STATE(2157)] = 64550, - [SMALL_STATE(2158)] = 64564, - [SMALL_STATE(2159)] = 64575, - [SMALL_STATE(2160)] = 64586, - [SMALL_STATE(2161)] = 64597, - [SMALL_STATE(2162)] = 64608, - [SMALL_STATE(2163)] = 64617, - [SMALL_STATE(2164)] = 64628, - [SMALL_STATE(2165)] = 64639, - [SMALL_STATE(2166)] = 64650, - [SMALL_STATE(2167)] = 64659, - [SMALL_STATE(2168)] = 64670, - [SMALL_STATE(2169)] = 64681, - [SMALL_STATE(2170)] = 64692, - [SMALL_STATE(2171)] = 64703, - [SMALL_STATE(2172)] = 64714, - [SMALL_STATE(2173)] = 64725, - [SMALL_STATE(2174)] = 64736, - [SMALL_STATE(2175)] = 64747, - [SMALL_STATE(2176)] = 64758, - [SMALL_STATE(2177)] = 64767, - [SMALL_STATE(2178)] = 64778, - [SMALL_STATE(2179)] = 64789, - [SMALL_STATE(2180)] = 64800, - [SMALL_STATE(2181)] = 64811, - [SMALL_STATE(2182)] = 64822, - [SMALL_STATE(2183)] = 64833, - [SMALL_STATE(2184)] = 64844, - [SMALL_STATE(2185)] = 64853, - [SMALL_STATE(2186)] = 64864, - [SMALL_STATE(2187)] = 64875, - [SMALL_STATE(2188)] = 64886, - [SMALL_STATE(2189)] = 64897, - [SMALL_STATE(2190)] = 64908, - [SMALL_STATE(2191)] = 64919, - [SMALL_STATE(2192)] = 64930, - [SMALL_STATE(2193)] = 64941, - [SMALL_STATE(2194)] = 64952, - [SMALL_STATE(2195)] = 64963, - [SMALL_STATE(2196)] = 64974, - [SMALL_STATE(2197)] = 64985, - [SMALL_STATE(2198)] = 64996, - [SMALL_STATE(2199)] = 65007, - [SMALL_STATE(2200)] = 65018, - [SMALL_STATE(2201)] = 65029, - [SMALL_STATE(2202)] = 65040, - [SMALL_STATE(2203)] = 65051, - [SMALL_STATE(2204)] = 65062, - [SMALL_STATE(2205)] = 65073, - [SMALL_STATE(2206)] = 65084, - [SMALL_STATE(2207)] = 65095, - [SMALL_STATE(2208)] = 65106, - [SMALL_STATE(2209)] = 65117, - [SMALL_STATE(2210)] = 65126, - [SMALL_STATE(2211)] = 65137, - [SMALL_STATE(2212)] = 65148, - [SMALL_STATE(2213)] = 65159, - [SMALL_STATE(2214)] = 65168, - [SMALL_STATE(2215)] = 65179, - [SMALL_STATE(2216)] = 65188, - [SMALL_STATE(2217)] = 65199, - [SMALL_STATE(2218)] = 65210, - [SMALL_STATE(2219)] = 65219, - [SMALL_STATE(2220)] = 65230, - [SMALL_STATE(2221)] = 65241, - [SMALL_STATE(2222)] = 65252, - [SMALL_STATE(2223)] = 65263, - [SMALL_STATE(2224)] = 65272, - [SMALL_STATE(2225)] = 65283, - [SMALL_STATE(2226)] = 65292, - [SMALL_STATE(2227)] = 65301, - [SMALL_STATE(2228)] = 65310, - [SMALL_STATE(2229)] = 65319, - [SMALL_STATE(2230)] = 65330, - [SMALL_STATE(2231)] = 65341, - [SMALL_STATE(2232)] = 65352, - [SMALL_STATE(2233)] = 65361, - [SMALL_STATE(2234)] = 65372, - [SMALL_STATE(2235)] = 65381, - [SMALL_STATE(2236)] = 65392, - [SMALL_STATE(2237)] = 65403, - [SMALL_STATE(2238)] = 65414, - [SMALL_STATE(2239)] = 65425, - [SMALL_STATE(2240)] = 65434, - [SMALL_STATE(2241)] = 65445, - [SMALL_STATE(2242)] = 65456, - [SMALL_STATE(2243)] = 65467, - [SMALL_STATE(2244)] = 65478, - [SMALL_STATE(2245)] = 65489, - [SMALL_STATE(2246)] = 65500, - [SMALL_STATE(2247)] = 65511, - [SMALL_STATE(2248)] = 65522, - [SMALL_STATE(2249)] = 65533, - [SMALL_STATE(2250)] = 65544, - [SMALL_STATE(2251)] = 65555, - [SMALL_STATE(2252)] = 65566, - [SMALL_STATE(2253)] = 65577, - [SMALL_STATE(2254)] = 65586, - [SMALL_STATE(2255)] = 65595, - [SMALL_STATE(2256)] = 65606, - [SMALL_STATE(2257)] = 65617, - [SMALL_STATE(2258)] = 65628, - [SMALL_STATE(2259)] = 65639, - [SMALL_STATE(2260)] = 65650, - [SMALL_STATE(2261)] = 65661, - [SMALL_STATE(2262)] = 65672, - [SMALL_STATE(2263)] = 65683, - [SMALL_STATE(2264)] = 65694, - [SMALL_STATE(2265)] = 65705, - [SMALL_STATE(2266)] = 65716, - [SMALL_STATE(2267)] = 65725, - [SMALL_STATE(2268)] = 65736, - [SMALL_STATE(2269)] = 65747, - [SMALL_STATE(2270)] = 65758, - [SMALL_STATE(2271)] = 65769, - [SMALL_STATE(2272)] = 65780, - [SMALL_STATE(2273)] = 65791, - [SMALL_STATE(2274)] = 65802, - [SMALL_STATE(2275)] = 65813, - [SMALL_STATE(2276)] = 65824, - [SMALL_STATE(2277)] = 65835, - [SMALL_STATE(2278)] = 65846, - [SMALL_STATE(2279)] = 65857, - [SMALL_STATE(2280)] = 65868, - [SMALL_STATE(2281)] = 65879, - [SMALL_STATE(2282)] = 65890, - [SMALL_STATE(2283)] = 65899, - [SMALL_STATE(2284)] = 65908, - [SMALL_STATE(2285)] = 65919, - [SMALL_STATE(2286)] = 65930, - [SMALL_STATE(2287)] = 65941, - [SMALL_STATE(2288)] = 65950, - [SMALL_STATE(2289)] = 65961, - [SMALL_STATE(2290)] = 65972, - [SMALL_STATE(2291)] = 65981, - [SMALL_STATE(2292)] = 65992, - [SMALL_STATE(2293)] = 66003, - [SMALL_STATE(2294)] = 66014, - [SMALL_STATE(2295)] = 66025, - [SMALL_STATE(2296)] = 66036, - [SMALL_STATE(2297)] = 66047, - [SMALL_STATE(2298)] = 66058, - [SMALL_STATE(2299)] = 66069, - [SMALL_STATE(2300)] = 66080, - [SMALL_STATE(2301)] = 66089, - [SMALL_STATE(2302)] = 66100, - [SMALL_STATE(2303)] = 66111, - [SMALL_STATE(2304)] = 66122, - [SMALL_STATE(2305)] = 66131, - [SMALL_STATE(2306)] = 66142, - [SMALL_STATE(2307)] = 66153, - [SMALL_STATE(2308)] = 66164, - [SMALL_STATE(2309)] = 66175, - [SMALL_STATE(2310)] = 66186, - [SMALL_STATE(2311)] = 66197, - [SMALL_STATE(2312)] = 66208, - [SMALL_STATE(2313)] = 66219, - [SMALL_STATE(2314)] = 66230, - [SMALL_STATE(2315)] = 66241, - [SMALL_STATE(2316)] = 66250, - [SMALL_STATE(2317)] = 66261, - [SMALL_STATE(2318)] = 66272, - [SMALL_STATE(2319)] = 66281, - [SMALL_STATE(2320)] = 66292, - [SMALL_STATE(2321)] = 66303, - [SMALL_STATE(2322)] = 66314, - [SMALL_STATE(2323)] = 66325, - [SMALL_STATE(2324)] = 66336, - [SMALL_STATE(2325)] = 66347, - [SMALL_STATE(2326)] = 66358, - [SMALL_STATE(2327)] = 66369, - [SMALL_STATE(2328)] = 66380, - [SMALL_STATE(2329)] = 66391, - [SMALL_STATE(2330)] = 66402, - [SMALL_STATE(2331)] = 66413, - [SMALL_STATE(2332)] = 66424, - [SMALL_STATE(2333)] = 66433, - [SMALL_STATE(2334)] = 66444, - [SMALL_STATE(2335)] = 66453, - [SMALL_STATE(2336)] = 66464, - [SMALL_STATE(2337)] = 66475, - [SMALL_STATE(2338)] = 66486, - [SMALL_STATE(2339)] = 66497, - [SMALL_STATE(2340)] = 66508, - [SMALL_STATE(2341)] = 66517, - [SMALL_STATE(2342)] = 66528, - [SMALL_STATE(2343)] = 66539, - [SMALL_STATE(2344)] = 66550, - [SMALL_STATE(2345)] = 66561, - [SMALL_STATE(2346)] = 66572, - [SMALL_STATE(2347)] = 66580, - [SMALL_STATE(2348)] = 66588, - [SMALL_STATE(2349)] = 66596, - [SMALL_STATE(2350)] = 66604, - [SMALL_STATE(2351)] = 66612, - [SMALL_STATE(2352)] = 66620, - [SMALL_STATE(2353)] = 66628, - [SMALL_STATE(2354)] = 66636, - [SMALL_STATE(2355)] = 66644, - [SMALL_STATE(2356)] = 66652, - [SMALL_STATE(2357)] = 66660, - [SMALL_STATE(2358)] = 66668, - [SMALL_STATE(2359)] = 66676, - [SMALL_STATE(2360)] = 66684, - [SMALL_STATE(2361)] = 66692, - [SMALL_STATE(2362)] = 66700, - [SMALL_STATE(2363)] = 66708, - [SMALL_STATE(2364)] = 66716, - [SMALL_STATE(2365)] = 66724, - [SMALL_STATE(2366)] = 66732, - [SMALL_STATE(2367)] = 66740, - [SMALL_STATE(2368)] = 66748, - [SMALL_STATE(2369)] = 66756, - [SMALL_STATE(2370)] = 66764, - [SMALL_STATE(2371)] = 66772, - [SMALL_STATE(2372)] = 66780, - [SMALL_STATE(2373)] = 66788, - [SMALL_STATE(2374)] = 66796, - [SMALL_STATE(2375)] = 66804, - [SMALL_STATE(2376)] = 66812, - [SMALL_STATE(2377)] = 66820, - [SMALL_STATE(2378)] = 66828, - [SMALL_STATE(2379)] = 66836, - [SMALL_STATE(2380)] = 66844, - [SMALL_STATE(2381)] = 66852, - [SMALL_STATE(2382)] = 66860, - [SMALL_STATE(2383)] = 66868, - [SMALL_STATE(2384)] = 66876, - [SMALL_STATE(2385)] = 66884, - [SMALL_STATE(2386)] = 66892, - [SMALL_STATE(2387)] = 66900, - [SMALL_STATE(2388)] = 66908, - [SMALL_STATE(2389)] = 66916, - [SMALL_STATE(2390)] = 66924, - [SMALL_STATE(2391)] = 66932, - [SMALL_STATE(2392)] = 66940, - [SMALL_STATE(2393)] = 66948, - [SMALL_STATE(2394)] = 66956, - [SMALL_STATE(2395)] = 66964, - [SMALL_STATE(2396)] = 66972, - [SMALL_STATE(2397)] = 66980, - [SMALL_STATE(2398)] = 66988, - [SMALL_STATE(2399)] = 66996, - [SMALL_STATE(2400)] = 67004, - [SMALL_STATE(2401)] = 67012, - [SMALL_STATE(2402)] = 67020, - [SMALL_STATE(2403)] = 67028, - [SMALL_STATE(2404)] = 67036, - [SMALL_STATE(2405)] = 67044, - [SMALL_STATE(2406)] = 67052, - [SMALL_STATE(2407)] = 67060, - [SMALL_STATE(2408)] = 67068, - [SMALL_STATE(2409)] = 67076, - [SMALL_STATE(2410)] = 67084, - [SMALL_STATE(2411)] = 67092, - [SMALL_STATE(2412)] = 67100, - [SMALL_STATE(2413)] = 67108, - [SMALL_STATE(2414)] = 67116, - [SMALL_STATE(2415)] = 67124, - [SMALL_STATE(2416)] = 67132, - [SMALL_STATE(2417)] = 67140, - [SMALL_STATE(2418)] = 67148, - [SMALL_STATE(2419)] = 67156, - [SMALL_STATE(2420)] = 67164, - [SMALL_STATE(2421)] = 67172, - [SMALL_STATE(2422)] = 67180, - [SMALL_STATE(2423)] = 67188, - [SMALL_STATE(2424)] = 67196, - [SMALL_STATE(2425)] = 67204, - [SMALL_STATE(2426)] = 67212, - [SMALL_STATE(2427)] = 67220, - [SMALL_STATE(2428)] = 67228, - [SMALL_STATE(2429)] = 67236, - [SMALL_STATE(2430)] = 67244, - [SMALL_STATE(2431)] = 67252, - [SMALL_STATE(2432)] = 67260, - [SMALL_STATE(2433)] = 67268, - [SMALL_STATE(2434)] = 67276, - [SMALL_STATE(2435)] = 67284, - [SMALL_STATE(2436)] = 67292, - [SMALL_STATE(2437)] = 67300, - [SMALL_STATE(2438)] = 67308, - [SMALL_STATE(2439)] = 67316, - [SMALL_STATE(2440)] = 67324, - [SMALL_STATE(2441)] = 67332, - [SMALL_STATE(2442)] = 67340, - [SMALL_STATE(2443)] = 67348, - [SMALL_STATE(2444)] = 67356, - [SMALL_STATE(2445)] = 67364, - [SMALL_STATE(2446)] = 67372, - [SMALL_STATE(2447)] = 67380, - [SMALL_STATE(2448)] = 67388, - [SMALL_STATE(2449)] = 67396, - [SMALL_STATE(2450)] = 67404, - [SMALL_STATE(2451)] = 67412, - [SMALL_STATE(2452)] = 67420, - [SMALL_STATE(2453)] = 67428, - [SMALL_STATE(2454)] = 67436, - [SMALL_STATE(2455)] = 67444, - [SMALL_STATE(2456)] = 67452, - [SMALL_STATE(2457)] = 67460, - [SMALL_STATE(2458)] = 67468, - [SMALL_STATE(2459)] = 67476, - [SMALL_STATE(2460)] = 67484, - [SMALL_STATE(2461)] = 67492, - [SMALL_STATE(2462)] = 67500, - [SMALL_STATE(2463)] = 67508, - [SMALL_STATE(2464)] = 67516, - [SMALL_STATE(2465)] = 67524, - [SMALL_STATE(2466)] = 67532, - [SMALL_STATE(2467)] = 67540, - [SMALL_STATE(2468)] = 67548, - [SMALL_STATE(2469)] = 67556, - [SMALL_STATE(2470)] = 67564, - [SMALL_STATE(2471)] = 67572, - [SMALL_STATE(2472)] = 67580, - [SMALL_STATE(2473)] = 67588, - [SMALL_STATE(2474)] = 67596, - [SMALL_STATE(2475)] = 67604, - [SMALL_STATE(2476)] = 67612, - [SMALL_STATE(2477)] = 67620, - [SMALL_STATE(2478)] = 67628, - [SMALL_STATE(2479)] = 67636, - [SMALL_STATE(2480)] = 67644, - [SMALL_STATE(2481)] = 67652, - [SMALL_STATE(2482)] = 67660, - [SMALL_STATE(2483)] = 67668, - [SMALL_STATE(2484)] = 67676, - [SMALL_STATE(2485)] = 67684, - [SMALL_STATE(2486)] = 67692, - [SMALL_STATE(2487)] = 67700, - [SMALL_STATE(2488)] = 67708, - [SMALL_STATE(2489)] = 67716, - [SMALL_STATE(2490)] = 67724, - [SMALL_STATE(2491)] = 67732, - [SMALL_STATE(2492)] = 67740, - [SMALL_STATE(2493)] = 67748, - [SMALL_STATE(2494)] = 67756, - [SMALL_STATE(2495)] = 67764, - [SMALL_STATE(2496)] = 67772, - [SMALL_STATE(2497)] = 67780, - [SMALL_STATE(2498)] = 67788, - [SMALL_STATE(2499)] = 67796, - [SMALL_STATE(2500)] = 67804, - [SMALL_STATE(2501)] = 67812, - [SMALL_STATE(2502)] = 67820, - [SMALL_STATE(2503)] = 67828, - [SMALL_STATE(2504)] = 67836, - [SMALL_STATE(2505)] = 67844, - [SMALL_STATE(2506)] = 67852, - [SMALL_STATE(2507)] = 67860, - [SMALL_STATE(2508)] = 67868, - [SMALL_STATE(2509)] = 67876, - [SMALL_STATE(2510)] = 67884, - [SMALL_STATE(2511)] = 67892, - [SMALL_STATE(2512)] = 67900, - [SMALL_STATE(2513)] = 67908, - [SMALL_STATE(2514)] = 67916, - [SMALL_STATE(2515)] = 67924, - [SMALL_STATE(2516)] = 67932, - [SMALL_STATE(2517)] = 67940, - [SMALL_STATE(2518)] = 67948, - [SMALL_STATE(2519)] = 67956, - [SMALL_STATE(2520)] = 67964, - [SMALL_STATE(2521)] = 67972, - [SMALL_STATE(2522)] = 67980, - [SMALL_STATE(2523)] = 67988, - [SMALL_STATE(2524)] = 67996, - [SMALL_STATE(2525)] = 68004, - [SMALL_STATE(2526)] = 68012, - [SMALL_STATE(2527)] = 68020, - [SMALL_STATE(2528)] = 68028, - [SMALL_STATE(2529)] = 68036, - [SMALL_STATE(2530)] = 68044, - [SMALL_STATE(2531)] = 68052, - [SMALL_STATE(2532)] = 68060, - [SMALL_STATE(2533)] = 68068, - [SMALL_STATE(2534)] = 68076, - [SMALL_STATE(2535)] = 68084, - [SMALL_STATE(2536)] = 68092, - [SMALL_STATE(2537)] = 68100, - [SMALL_STATE(2538)] = 68108, - [SMALL_STATE(2539)] = 68116, - [SMALL_STATE(2540)] = 68124, - [SMALL_STATE(2541)] = 68132, - [SMALL_STATE(2542)] = 68140, - [SMALL_STATE(2543)] = 68148, - [SMALL_STATE(2544)] = 68156, - [SMALL_STATE(2545)] = 68164, - [SMALL_STATE(2546)] = 68172, - [SMALL_STATE(2547)] = 68180, - [SMALL_STATE(2548)] = 68188, - [SMALL_STATE(2549)] = 68196, - [SMALL_STATE(2550)] = 68204, - [SMALL_STATE(2551)] = 68212, - [SMALL_STATE(2552)] = 68220, - [SMALL_STATE(2553)] = 68228, - [SMALL_STATE(2554)] = 68236, - [SMALL_STATE(2555)] = 68244, - [SMALL_STATE(2556)] = 68252, - [SMALL_STATE(2557)] = 68260, - [SMALL_STATE(2558)] = 68268, - [SMALL_STATE(2559)] = 68276, - [SMALL_STATE(2560)] = 68284, - [SMALL_STATE(2561)] = 68292, - [SMALL_STATE(2562)] = 68300, - [SMALL_STATE(2563)] = 68308, - [SMALL_STATE(2564)] = 68316, - [SMALL_STATE(2565)] = 68324, - [SMALL_STATE(2566)] = 68332, - [SMALL_STATE(2567)] = 68340, - [SMALL_STATE(2568)] = 68348, - [SMALL_STATE(2569)] = 68356, - [SMALL_STATE(2570)] = 68364, - [SMALL_STATE(2571)] = 68372, - [SMALL_STATE(2572)] = 68380, - [SMALL_STATE(2573)] = 68388, - [SMALL_STATE(2574)] = 68396, - [SMALL_STATE(2575)] = 68404, - [SMALL_STATE(2576)] = 68412, - [SMALL_STATE(2577)] = 68420, - [SMALL_STATE(2578)] = 68428, - [SMALL_STATE(2579)] = 68436, - [SMALL_STATE(2580)] = 68444, - [SMALL_STATE(2581)] = 68452, + [SMALL_STATE(667)] = 0, + [SMALL_STATE(668)] = 129, + [SMALL_STATE(669)] = 258, + [SMALL_STATE(670)] = 387, + [SMALL_STATE(671)] = 516, + [SMALL_STATE(672)] = 645, + [SMALL_STATE(673)] = 774, + [SMALL_STATE(674)] = 903, + [SMALL_STATE(675)] = 1032, + [SMALL_STATE(676)] = 1161, + [SMALL_STATE(677)] = 1290, + [SMALL_STATE(678)] = 1419, + [SMALL_STATE(679)] = 1548, + [SMALL_STATE(680)] = 1677, + [SMALL_STATE(681)] = 1806, + [SMALL_STATE(682)] = 1935, + [SMALL_STATE(683)] = 2064, + [SMALL_STATE(684)] = 2193, + [SMALL_STATE(685)] = 2322, + [SMALL_STATE(686)] = 2451, + [SMALL_STATE(687)] = 2580, + [SMALL_STATE(688)] = 2709, + [SMALL_STATE(689)] = 2838, + [SMALL_STATE(690)] = 2967, + [SMALL_STATE(691)] = 3096, + [SMALL_STATE(692)] = 3225, + [SMALL_STATE(693)] = 3354, + [SMALL_STATE(694)] = 3483, + [SMALL_STATE(695)] = 3612, + [SMALL_STATE(696)] = 3741, + [SMALL_STATE(697)] = 3870, + [SMALL_STATE(698)] = 3999, + [SMALL_STATE(699)] = 4128, + [SMALL_STATE(700)] = 4257, + [SMALL_STATE(701)] = 4386, + [SMALL_STATE(702)] = 4515, + [SMALL_STATE(703)] = 4644, + [SMALL_STATE(704)] = 4773, + [SMALL_STATE(705)] = 4902, + [SMALL_STATE(706)] = 5031, + [SMALL_STATE(707)] = 5160, + [SMALL_STATE(708)] = 5289, + [SMALL_STATE(709)] = 5418, + [SMALL_STATE(710)] = 5547, + [SMALL_STATE(711)] = 5676, + [SMALL_STATE(712)] = 5805, + [SMALL_STATE(713)] = 5934, + [SMALL_STATE(714)] = 6063, + [SMALL_STATE(715)] = 6192, + [SMALL_STATE(716)] = 6321, + [SMALL_STATE(717)] = 6452, + [SMALL_STATE(718)] = 6581, + [SMALL_STATE(719)] = 6710, + [SMALL_STATE(720)] = 6839, + [SMALL_STATE(721)] = 6968, + [SMALL_STATE(722)] = 7097, + [SMALL_STATE(723)] = 7226, + [SMALL_STATE(724)] = 7355, + [SMALL_STATE(725)] = 7484, + [SMALL_STATE(726)] = 7613, + [SMALL_STATE(727)] = 7742, + [SMALL_STATE(728)] = 7871, + [SMALL_STATE(729)] = 8000, + [SMALL_STATE(730)] = 8129, + [SMALL_STATE(731)] = 8258, + [SMALL_STATE(732)] = 8387, + [SMALL_STATE(733)] = 8516, + [SMALL_STATE(734)] = 8645, + [SMALL_STATE(735)] = 8774, + [SMALL_STATE(736)] = 8903, + [SMALL_STATE(737)] = 9032, + [SMALL_STATE(738)] = 9161, + [SMALL_STATE(739)] = 9290, + [SMALL_STATE(740)] = 9419, + [SMALL_STATE(741)] = 9548, + [SMALL_STATE(742)] = 9677, + [SMALL_STATE(743)] = 9806, + [SMALL_STATE(744)] = 9935, + [SMALL_STATE(745)] = 10064, + [SMALL_STATE(746)] = 10193, + [SMALL_STATE(747)] = 10322, + [SMALL_STATE(748)] = 10451, + [SMALL_STATE(749)] = 10580, + [SMALL_STATE(750)] = 10709, + [SMALL_STATE(751)] = 10838, + [SMALL_STATE(752)] = 10967, + [SMALL_STATE(753)] = 11096, + [SMALL_STATE(754)] = 11167, + [SMALL_STATE(755)] = 11296, + [SMALL_STATE(756)] = 11425, + [SMALL_STATE(757)] = 11554, + [SMALL_STATE(758)] = 11683, + [SMALL_STATE(759)] = 11812, + [SMALL_STATE(760)] = 11941, + [SMALL_STATE(761)] = 12070, + [SMALL_STATE(762)] = 12199, + [SMALL_STATE(763)] = 12328, + [SMALL_STATE(764)] = 12457, + [SMALL_STATE(765)] = 12586, + [SMALL_STATE(766)] = 12715, + [SMALL_STATE(767)] = 12844, + [SMALL_STATE(768)] = 12973, + [SMALL_STATE(769)] = 13102, + [SMALL_STATE(770)] = 13231, + [SMALL_STATE(771)] = 13360, + [SMALL_STATE(772)] = 13489, + [SMALL_STATE(773)] = 13618, + [SMALL_STATE(774)] = 13747, + [SMALL_STATE(775)] = 13876, + [SMALL_STATE(776)] = 14005, + [SMALL_STATE(777)] = 14134, + [SMALL_STATE(778)] = 14200, + [SMALL_STATE(779)] = 14266, + [SMALL_STATE(780)] = 14332, + [SMALL_STATE(781)] = 14398, + [SMALL_STATE(782)] = 14460, + [SMALL_STATE(783)] = 14531, + [SMALL_STATE(784)] = 14599, + [SMALL_STATE(785)] = 14667, + [SMALL_STATE(786)] = 14732, + [SMALL_STATE(787)] = 14793, + [SMALL_STATE(788)] = 14854, + [SMALL_STATE(789)] = 14919, + [SMALL_STATE(790)] = 14980, + [SMALL_STATE(791)] = 15041, + [SMALL_STATE(792)] = 15106, + [SMALL_STATE(793)] = 15171, + [SMALL_STATE(794)] = 15229, + [SMALL_STATE(795)] = 15285, + [SMALL_STATE(796)] = 15345, + [SMALL_STATE(797)] = 15403, + [SMALL_STATE(798)] = 15465, + [SMALL_STATE(799)] = 15523, + [SMALL_STATE(800)] = 15579, + [SMALL_STATE(801)] = 15635, + [SMALL_STATE(802)] = 15693, + [SMALL_STATE(803)] = 15749, + [SMALL_STATE(804)] = 15805, + [SMALL_STATE(805)] = 15861, + [SMALL_STATE(806)] = 15920, + [SMALL_STATE(807)] = 15975, + [SMALL_STATE(808)] = 16034, + [SMALL_STATE(809)] = 16091, + [SMALL_STATE(810)] = 16146, + [SMALL_STATE(811)] = 16203, + [SMALL_STATE(812)] = 16258, + [SMALL_STATE(813)] = 16313, + [SMALL_STATE(814)] = 16370, + [SMALL_STATE(815)] = 16425, + [SMALL_STATE(816)] = 16480, + [SMALL_STATE(817)] = 16535, + [SMALL_STATE(818)] = 16594, + [SMALL_STATE(819)] = 16649, + [SMALL_STATE(820)] = 16706, + [SMALL_STATE(821)] = 16761, + [SMALL_STATE(822)] = 16816, + [SMALL_STATE(823)] = 16875, + [SMALL_STATE(824)] = 16930, + [SMALL_STATE(825)] = 16985, + [SMALL_STATE(826)] = 17042, + [SMALL_STATE(827)] = 17099, + [SMALL_STATE(828)] = 17156, + [SMALL_STATE(829)] = 17213, + [SMALL_STATE(830)] = 17272, + [SMALL_STATE(831)] = 17327, + [SMALL_STATE(832)] = 17382, + [SMALL_STATE(833)] = 17439, + [SMALL_STATE(834)] = 17496, + [SMALL_STATE(835)] = 17553, + [SMALL_STATE(836)] = 17610, + [SMALL_STATE(837)] = 17667, + [SMALL_STATE(838)] = 17724, + [SMALL_STATE(839)] = 17781, + [SMALL_STATE(840)] = 17835, + [SMALL_STATE(841)] = 17889, + [SMALL_STATE(842)] = 17943, + [SMALL_STATE(843)] = 17997, + [SMALL_STATE(844)] = 18051, + [SMALL_STATE(845)] = 18105, + [SMALL_STATE(846)] = 18159, + [SMALL_STATE(847)] = 18213, + [SMALL_STATE(848)] = 18267, + [SMALL_STATE(849)] = 18321, + [SMALL_STATE(850)] = 18375, + [SMALL_STATE(851)] = 18429, + [SMALL_STATE(852)] = 18483, + [SMALL_STATE(853)] = 18537, + [SMALL_STATE(854)] = 18591, + [SMALL_STATE(855)] = 18645, + [SMALL_STATE(856)] = 18699, + [SMALL_STATE(857)] = 18753, + [SMALL_STATE(858)] = 18807, + [SMALL_STATE(859)] = 18861, + [SMALL_STATE(860)] = 18915, + [SMALL_STATE(861)] = 18969, + [SMALL_STATE(862)] = 19023, + [SMALL_STATE(863)] = 19077, + [SMALL_STATE(864)] = 19131, + [SMALL_STATE(865)] = 19185, + [SMALL_STATE(866)] = 19239, + [SMALL_STATE(867)] = 19293, + [SMALL_STATE(868)] = 19347, + [SMALL_STATE(869)] = 19401, + [SMALL_STATE(870)] = 19455, + [SMALL_STATE(871)] = 19509, + [SMALL_STATE(872)] = 19563, + [SMALL_STATE(873)] = 19617, + [SMALL_STATE(874)] = 19671, + [SMALL_STATE(875)] = 19725, + [SMALL_STATE(876)] = 19779, + [SMALL_STATE(877)] = 19833, + [SMALL_STATE(878)] = 19887, + [SMALL_STATE(879)] = 19941, + [SMALL_STATE(880)] = 19995, + [SMALL_STATE(881)] = 20049, + [SMALL_STATE(882)] = 20103, + [SMALL_STATE(883)] = 20157, + [SMALL_STATE(884)] = 20211, + [SMALL_STATE(885)] = 20265, + [SMALL_STATE(886)] = 20319, + [SMALL_STATE(887)] = 20373, + [SMALL_STATE(888)] = 20427, + [SMALL_STATE(889)] = 20481, + [SMALL_STATE(890)] = 20535, + [SMALL_STATE(891)] = 20589, + [SMALL_STATE(892)] = 20643, + [SMALL_STATE(893)] = 20697, + [SMALL_STATE(894)] = 20751, + [SMALL_STATE(895)] = 20805, + [SMALL_STATE(896)] = 20859, + [SMALL_STATE(897)] = 20913, + [SMALL_STATE(898)] = 20967, + [SMALL_STATE(899)] = 21021, + [SMALL_STATE(900)] = 21075, + [SMALL_STATE(901)] = 21129, + [SMALL_STATE(902)] = 21183, + [SMALL_STATE(903)] = 21237, + [SMALL_STATE(904)] = 21291, + [SMALL_STATE(905)] = 21345, + [SMALL_STATE(906)] = 21399, + [SMALL_STATE(907)] = 21453, + [SMALL_STATE(908)] = 21507, + [SMALL_STATE(909)] = 21561, + [SMALL_STATE(910)] = 21615, + [SMALL_STATE(911)] = 21669, + [SMALL_STATE(912)] = 21725, + [SMALL_STATE(913)] = 21779, + [SMALL_STATE(914)] = 21833, + [SMALL_STATE(915)] = 21887, + [SMALL_STATE(916)] = 21941, + [SMALL_STATE(917)] = 21995, + [SMALL_STATE(918)] = 22049, + [SMALL_STATE(919)] = 22103, + [SMALL_STATE(920)] = 22157, + [SMALL_STATE(921)] = 22211, + [SMALL_STATE(922)] = 22265, + [SMALL_STATE(923)] = 22319, + [SMALL_STATE(924)] = 22373, + [SMALL_STATE(925)] = 22427, + [SMALL_STATE(926)] = 22481, + [SMALL_STATE(927)] = 22535, + [SMALL_STATE(928)] = 22589, + [SMALL_STATE(929)] = 22643, + [SMALL_STATE(930)] = 22697, + [SMALL_STATE(931)] = 22751, + [SMALL_STATE(932)] = 22805, + [SMALL_STATE(933)] = 22859, + [SMALL_STATE(934)] = 22913, + [SMALL_STATE(935)] = 22967, + [SMALL_STATE(936)] = 23021, + [SMALL_STATE(937)] = 23075, + [SMALL_STATE(938)] = 23129, + [SMALL_STATE(939)] = 23183, + [SMALL_STATE(940)] = 23237, + [SMALL_STATE(941)] = 23291, + [SMALL_STATE(942)] = 23345, + [SMALL_STATE(943)] = 23399, + [SMALL_STATE(944)] = 23453, + [SMALL_STATE(945)] = 23507, + [SMALL_STATE(946)] = 23561, + [SMALL_STATE(947)] = 23615, + [SMALL_STATE(948)] = 23669, + [SMALL_STATE(949)] = 23723, + [SMALL_STATE(950)] = 23777, + [SMALL_STATE(951)] = 23831, + [SMALL_STATE(952)] = 23885, + [SMALL_STATE(953)] = 23939, + [SMALL_STATE(954)] = 23993, + [SMALL_STATE(955)] = 24047, + [SMALL_STATE(956)] = 24101, + [SMALL_STATE(957)] = 24155, + [SMALL_STATE(958)] = 24209, + [SMALL_STATE(959)] = 24263, + [SMALL_STATE(960)] = 24317, + [SMALL_STATE(961)] = 24371, + [SMALL_STATE(962)] = 24425, + [SMALL_STATE(963)] = 24479, + [SMALL_STATE(964)] = 24533, + [SMALL_STATE(965)] = 24587, + [SMALL_STATE(966)] = 24641, + [SMALL_STATE(967)] = 24695, + [SMALL_STATE(968)] = 24749, + [SMALL_STATE(969)] = 24803, + [SMALL_STATE(970)] = 24857, + [SMALL_STATE(971)] = 24911, + [SMALL_STATE(972)] = 24965, + [SMALL_STATE(973)] = 25019, + [SMALL_STATE(974)] = 25073, + [SMALL_STATE(975)] = 25127, + [SMALL_STATE(976)] = 25181, + [SMALL_STATE(977)] = 25235, + [SMALL_STATE(978)] = 25289, + [SMALL_STATE(979)] = 25343, + [SMALL_STATE(980)] = 25397, + [SMALL_STATE(981)] = 25451, + [SMALL_STATE(982)] = 25505, + [SMALL_STATE(983)] = 25559, + [SMALL_STATE(984)] = 25613, + [SMALL_STATE(985)] = 25667, + [SMALL_STATE(986)] = 25721, + [SMALL_STATE(987)] = 25775, + [SMALL_STATE(988)] = 25829, + [SMALL_STATE(989)] = 25883, + [SMALL_STATE(990)] = 25937, + [SMALL_STATE(991)] = 25991, + [SMALL_STATE(992)] = 26045, + [SMALL_STATE(993)] = 26099, + [SMALL_STATE(994)] = 26153, + [SMALL_STATE(995)] = 26207, + [SMALL_STATE(996)] = 26261, + [SMALL_STATE(997)] = 26315, + [SMALL_STATE(998)] = 26369, + [SMALL_STATE(999)] = 26423, + [SMALL_STATE(1000)] = 26477, + [SMALL_STATE(1001)] = 26531, + [SMALL_STATE(1002)] = 26585, + [SMALL_STATE(1003)] = 26639, + [SMALL_STATE(1004)] = 26693, + [SMALL_STATE(1005)] = 26747, + [SMALL_STATE(1006)] = 26801, + [SMALL_STATE(1007)] = 26855, + [SMALL_STATE(1008)] = 26909, + [SMALL_STATE(1009)] = 26963, + [SMALL_STATE(1010)] = 27017, + [SMALL_STATE(1011)] = 27071, + [SMALL_STATE(1012)] = 27125, + [SMALL_STATE(1013)] = 27179, + [SMALL_STATE(1014)] = 27233, + [SMALL_STATE(1015)] = 27287, + [SMALL_STATE(1016)] = 27341, + [SMALL_STATE(1017)] = 27395, + [SMALL_STATE(1018)] = 27449, + [SMALL_STATE(1019)] = 27503, + [SMALL_STATE(1020)] = 27557, + [SMALL_STATE(1021)] = 27611, + [SMALL_STATE(1022)] = 27665, + [SMALL_STATE(1023)] = 27719, + [SMALL_STATE(1024)] = 27773, + [SMALL_STATE(1025)] = 27827, + [SMALL_STATE(1026)] = 27881, + [SMALL_STATE(1027)] = 27935, + [SMALL_STATE(1028)] = 27989, + [SMALL_STATE(1029)] = 28043, + [SMALL_STATE(1030)] = 28097, + [SMALL_STATE(1031)] = 28151, + [SMALL_STATE(1032)] = 28205, + [SMALL_STATE(1033)] = 28259, + [SMALL_STATE(1034)] = 28313, + [SMALL_STATE(1035)] = 28367, + [SMALL_STATE(1036)] = 28421, + [SMALL_STATE(1037)] = 28475, + [SMALL_STATE(1038)] = 28531, + [SMALL_STATE(1039)] = 28585, + [SMALL_STATE(1040)] = 28639, + [SMALL_STATE(1041)] = 28693, + [SMALL_STATE(1042)] = 28747, + [SMALL_STATE(1043)] = 28801, + [SMALL_STATE(1044)] = 28855, + [SMALL_STATE(1045)] = 28909, + [SMALL_STATE(1046)] = 28963, + [SMALL_STATE(1047)] = 29017, + [SMALL_STATE(1048)] = 29071, + [SMALL_STATE(1049)] = 29125, + [SMALL_STATE(1050)] = 29179, + [SMALL_STATE(1051)] = 29233, + [SMALL_STATE(1052)] = 29287, + [SMALL_STATE(1053)] = 29341, + [SMALL_STATE(1054)] = 29395, + [SMALL_STATE(1055)] = 29449, + [SMALL_STATE(1056)] = 29503, + [SMALL_STATE(1057)] = 29557, + [SMALL_STATE(1058)] = 29611, + [SMALL_STATE(1059)] = 29665, + [SMALL_STATE(1060)] = 29719, + [SMALL_STATE(1061)] = 29773, + [SMALL_STATE(1062)] = 29827, + [SMALL_STATE(1063)] = 29881, + [SMALL_STATE(1064)] = 29935, + [SMALL_STATE(1065)] = 29989, + [SMALL_STATE(1066)] = 30043, + [SMALL_STATE(1067)] = 30097, + [SMALL_STATE(1068)] = 30151, + [SMALL_STATE(1069)] = 30205, + [SMALL_STATE(1070)] = 30259, + [SMALL_STATE(1071)] = 30313, + [SMALL_STATE(1072)] = 30367, + [SMALL_STATE(1073)] = 30421, + [SMALL_STATE(1074)] = 30475, + [SMALL_STATE(1075)] = 30529, + [SMALL_STATE(1076)] = 30583, + [SMALL_STATE(1077)] = 30637, + [SMALL_STATE(1078)] = 30691, + [SMALL_STATE(1079)] = 30745, + [SMALL_STATE(1080)] = 30799, + [SMALL_STATE(1081)] = 30853, + [SMALL_STATE(1082)] = 30907, + [SMALL_STATE(1083)] = 30961, + [SMALL_STATE(1084)] = 31015, + [SMALL_STATE(1085)] = 31069, + [SMALL_STATE(1086)] = 31123, + [SMALL_STATE(1087)] = 31177, + [SMALL_STATE(1088)] = 31231, + [SMALL_STATE(1089)] = 31285, + [SMALL_STATE(1090)] = 31339, + [SMALL_STATE(1091)] = 31393, + [SMALL_STATE(1092)] = 31447, + [SMALL_STATE(1093)] = 31501, + [SMALL_STATE(1094)] = 31555, + [SMALL_STATE(1095)] = 31609, + [SMALL_STATE(1096)] = 31663, + [SMALL_STATE(1097)] = 31717, + [SMALL_STATE(1098)] = 31771, + [SMALL_STATE(1099)] = 31825, + [SMALL_STATE(1100)] = 31879, + [SMALL_STATE(1101)] = 31933, + [SMALL_STATE(1102)] = 31987, + [SMALL_STATE(1103)] = 32041, + [SMALL_STATE(1104)] = 32095, + [SMALL_STATE(1105)] = 32149, + [SMALL_STATE(1106)] = 32203, + [SMALL_STATE(1107)] = 32257, + [SMALL_STATE(1108)] = 32311, + [SMALL_STATE(1109)] = 32365, + [SMALL_STATE(1110)] = 32419, + [SMALL_STATE(1111)] = 32473, + [SMALL_STATE(1112)] = 32527, + [SMALL_STATE(1113)] = 32581, + [SMALL_STATE(1114)] = 32635, + [SMALL_STATE(1115)] = 32689, + [SMALL_STATE(1116)] = 32743, + [SMALL_STATE(1117)] = 32797, + [SMALL_STATE(1118)] = 32851, + [SMALL_STATE(1119)] = 32905, + [SMALL_STATE(1120)] = 32959, + [SMALL_STATE(1121)] = 33013, + [SMALL_STATE(1122)] = 33067, + [SMALL_STATE(1123)] = 33121, + [SMALL_STATE(1124)] = 33175, + [SMALL_STATE(1125)] = 33229, + [SMALL_STATE(1126)] = 33283, + [SMALL_STATE(1127)] = 33337, + [SMALL_STATE(1128)] = 33391, + [SMALL_STATE(1129)] = 33445, + [SMALL_STATE(1130)] = 33499, + [SMALL_STATE(1131)] = 33553, + [SMALL_STATE(1132)] = 33607, + [SMALL_STATE(1133)] = 33661, + [SMALL_STATE(1134)] = 33715, + [SMALL_STATE(1135)] = 33769, + [SMALL_STATE(1136)] = 33823, + [SMALL_STATE(1137)] = 33877, + [SMALL_STATE(1138)] = 33931, + [SMALL_STATE(1139)] = 33985, + [SMALL_STATE(1140)] = 34039, + [SMALL_STATE(1141)] = 34093, + [SMALL_STATE(1142)] = 34147, + [SMALL_STATE(1143)] = 34201, + [SMALL_STATE(1144)] = 34255, + [SMALL_STATE(1145)] = 34309, + [SMALL_STATE(1146)] = 34363, + [SMALL_STATE(1147)] = 34417, + [SMALL_STATE(1148)] = 34471, + [SMALL_STATE(1149)] = 34525, + [SMALL_STATE(1150)] = 34579, + [SMALL_STATE(1151)] = 34633, + [SMALL_STATE(1152)] = 34687, + [SMALL_STATE(1153)] = 34741, + [SMALL_STATE(1154)] = 34795, + [SMALL_STATE(1155)] = 34849, + [SMALL_STATE(1156)] = 34903, + [SMALL_STATE(1157)] = 34957, + [SMALL_STATE(1158)] = 35011, + [SMALL_STATE(1159)] = 35065, + [SMALL_STATE(1160)] = 35119, + [SMALL_STATE(1161)] = 35173, + [SMALL_STATE(1162)] = 35227, + [SMALL_STATE(1163)] = 35310, + [SMALL_STATE(1164)] = 35385, + [SMALL_STATE(1165)] = 35466, + [SMALL_STATE(1166)] = 35519, + [SMALL_STATE(1167)] = 35602, + [SMALL_STATE(1168)] = 35669, + [SMALL_STATE(1169)] = 35740, + [SMALL_STATE(1170)] = 35801, + [SMALL_STATE(1171)] = 35874, + [SMALL_STATE(1172)] = 35961, + [SMALL_STATE(1173)] = 36022, + [SMALL_STATE(1174)] = 36105, + [SMALL_STATE(1175)] = 36184, + [SMALL_STATE(1176)] = 36241, + [SMALL_STATE(1177)] = 36330, + [SMALL_STATE(1178)] = 36399, + [SMALL_STATE(1179)] = 36452, + [SMALL_STATE(1180)] = 36507, + [SMALL_STATE(1181)] = 36560, + [SMALL_STATE(1182)] = 36649, + [SMALL_STATE(1183)] = 36702, + [SMALL_STATE(1184)] = 36755, + [SMALL_STATE(1185)] = 36838, + [SMALL_STATE(1186)] = 36901, + [SMALL_STATE(1187)] = 36954, + [SMALL_STATE(1188)] = 37019, + [SMALL_STATE(1189)] = 37106, + [SMALL_STATE(1190)] = 37189, + [SMALL_STATE(1191)] = 37244, + [SMALL_STATE(1192)] = 37305, + [SMALL_STATE(1193)] = 37388, + [SMALL_STATE(1194)] = 37440, + [SMALL_STATE(1195)] = 37492, + [SMALL_STATE(1196)] = 37552, + [SMALL_STATE(1197)] = 37631, + [SMALL_STATE(1198)] = 37688, + [SMALL_STATE(1199)] = 37775, + [SMALL_STATE(1200)] = 37826, + [SMALL_STATE(1201)] = 37877, + [SMALL_STATE(1202)] = 37964, + [SMALL_STATE(1203)] = 38051, + [SMALL_STATE(1204)] = 38136, + [SMALL_STATE(1205)] = 38221, + [SMALL_STATE(1206)] = 38308, + [SMALL_STATE(1207)] = 38364, + [SMALL_STATE(1208)] = 38440, + [SMALL_STATE(1209)] = 38516, + [SMALL_STATE(1210)] = 38592, + [SMALL_STATE(1211)] = 38646, + [SMALL_STATE(1212)] = 38722, + [SMALL_STATE(1213)] = 38811, + [SMALL_STATE(1214)] = 38860, + [SMALL_STATE(1215)] = 38909, + [SMALL_STATE(1216)] = 38958, + [SMALL_STATE(1217)] = 39007, + [SMALL_STATE(1218)] = 39060, + [SMALL_STATE(1219)] = 39111, + [SMALL_STATE(1220)] = 39160, + [SMALL_STATE(1221)] = 39209, + [SMALL_STATE(1222)] = 39258, + [SMALL_STATE(1223)] = 39347, + [SMALL_STATE(1224)] = 39396, + [SMALL_STATE(1225)] = 39445, + [SMALL_STATE(1226)] = 39498, + [SMALL_STATE(1227)] = 39571, + [SMALL_STATE(1228)] = 39622, + [SMALL_STATE(1229)] = 39700, + [SMALL_STATE(1230)] = 39750, + [SMALL_STATE(1231)] = 39828, + [SMALL_STATE(1232)] = 39914, + [SMALL_STATE(1233)] = 39964, + [SMALL_STATE(1234)] = 40014, + [SMALL_STATE(1235)] = 40064, + [SMALL_STATE(1236)] = 40150, + [SMALL_STATE(1237)] = 40233, + [SMALL_STATE(1238)] = 40314, + [SMALL_STATE(1239)] = 40397, + [SMALL_STATE(1240)] = 40480, + [SMALL_STATE(1241)] = 40563, + [SMALL_STATE(1242)] = 40646, + [SMALL_STATE(1243)] = 40727, + [SMALL_STATE(1244)] = 40810, + [SMALL_STATE(1245)] = 40893, + [SMALL_STATE(1246)] = 40976, + [SMALL_STATE(1247)] = 41059, + [SMALL_STATE(1248)] = 41142, + [SMALL_STATE(1249)] = 41225, + [SMALL_STATE(1250)] = 41308, + [SMALL_STATE(1251)] = 41391, + [SMALL_STATE(1252)] = 41474, + [SMALL_STATE(1253)] = 41555, + [SMALL_STATE(1254)] = 41638, + [SMALL_STATE(1255)] = 41721, + [SMALL_STATE(1256)] = 41804, + [SMALL_STATE(1257)] = 41887, + [SMALL_STATE(1258)] = 41970, + [SMALL_STATE(1259)] = 42053, + [SMALL_STATE(1260)] = 42134, + [SMALL_STATE(1261)] = 42215, + [SMALL_STATE(1262)] = 42298, + [SMALL_STATE(1263)] = 42381, + [SMALL_STATE(1264)] = 42464, + [SMALL_STATE(1265)] = 42547, + [SMALL_STATE(1266)] = 42630, + [SMALL_STATE(1267)] = 42713, + [SMALL_STATE(1268)] = 42796, + [SMALL_STATE(1269)] = 42879, + [SMALL_STATE(1270)] = 42960, + [SMALL_STATE(1271)] = 43037, + [SMALL_STATE(1272)] = 43108, + [SMALL_STATE(1273)] = 43191, + [SMALL_STATE(1274)] = 43272, + [SMALL_STATE(1275)] = 43353, + [SMALL_STATE(1276)] = 43436, + [SMALL_STATE(1277)] = 43519, + [SMALL_STATE(1278)] = 43602, + [SMALL_STATE(1279)] = 43685, + [SMALL_STATE(1280)] = 43768, + [SMALL_STATE(1281)] = 43849, + [SMALL_STATE(1282)] = 43932, + [SMALL_STATE(1283)] = 43989, + [SMALL_STATE(1284)] = 44070, + [SMALL_STATE(1285)] = 44151, + [SMALL_STATE(1286)] = 44210, + [SMALL_STATE(1287)] = 44287, + [SMALL_STATE(1288)] = 44370, + [SMALL_STATE(1289)] = 44453, + [SMALL_STATE(1290)] = 44536, + [SMALL_STATE(1291)] = 44591, + [SMALL_STATE(1292)] = 44660, + [SMALL_STATE(1293)] = 44723, + [SMALL_STATE(1294)] = 44796, + [SMALL_STATE(1295)] = 44879, + [SMALL_STATE(1296)] = 44962, + [SMALL_STATE(1297)] = 45037, + [SMALL_STATE(1298)] = 45104, + [SMALL_STATE(1299)] = 45187, + [SMALL_STATE(1300)] = 45252, + [SMALL_STATE(1301)] = 45313, + [SMALL_STATE(1302)] = 45396, + [SMALL_STATE(1303)] = 45477, + [SMALL_STATE(1304)] = 45560, + [SMALL_STATE(1305)] = 45637, + [SMALL_STATE(1306)] = 45720, + [SMALL_STATE(1307)] = 45801, + [SMALL_STATE(1308)] = 45884, + [SMALL_STATE(1309)] = 45939, + [SMALL_STATE(1310)] = 46022, + [SMALL_STATE(1311)] = 46105, + [SMALL_STATE(1312)] = 46188, + [SMALL_STATE(1313)] = 46265, + [SMALL_STATE(1314)] = 46348, + [SMALL_STATE(1315)] = 46429, + [SMALL_STATE(1316)] = 46506, + [SMALL_STATE(1317)] = 46589, + [SMALL_STATE(1318)] = 46672, + [SMALL_STATE(1319)] = 46727, + [SMALL_STATE(1320)] = 46804, + [SMALL_STATE(1321)] = 46887, + [SMALL_STATE(1322)] = 46970, + [SMALL_STATE(1323)] = 47050, + [SMALL_STATE(1324)] = 47130, + [SMALL_STATE(1325)] = 47210, + [SMALL_STATE(1326)] = 47290, + [SMALL_STATE(1327)] = 47370, + [SMALL_STATE(1328)] = 47450, + [SMALL_STATE(1329)] = 47518, + [SMALL_STATE(1330)] = 47598, + [SMALL_STATE(1331)] = 47678, + [SMALL_STATE(1332)] = 47758, + [SMALL_STATE(1333)] = 47838, + [SMALL_STATE(1334)] = 47918, + [SMALL_STATE(1335)] = 47998, + [SMALL_STATE(1336)] = 48066, + [SMALL_STATE(1337)] = 48146, + [SMALL_STATE(1338)] = 48226, + [SMALL_STATE(1339)] = 48306, + [SMALL_STATE(1340)] = 48386, + [SMALL_STATE(1341)] = 48466, + [SMALL_STATE(1342)] = 48546, + [SMALL_STATE(1343)] = 48626, + [SMALL_STATE(1344)] = 48706, + [SMALL_STATE(1345)] = 48786, + [SMALL_STATE(1346)] = 48866, + [SMALL_STATE(1347)] = 48946, + [SMALL_STATE(1348)] = 49026, + [SMALL_STATE(1349)] = 49106, + [SMALL_STATE(1350)] = 49186, + [SMALL_STATE(1351)] = 49251, + [SMALL_STATE(1352)] = 49316, + [SMALL_STATE(1353)] = 49381, + [SMALL_STATE(1354)] = 49446, + [SMALL_STATE(1355)] = 49511, + [SMALL_STATE(1356)] = 49551, + [SMALL_STATE(1357)] = 49591, + [SMALL_STATE(1358)] = 49631, + [SMALL_STATE(1359)] = 49683, + [SMALL_STATE(1360)] = 49735, + [SMALL_STATE(1361)] = 49766, + [SMALL_STATE(1362)] = 49797, + [SMALL_STATE(1363)] = 49843, + [SMALL_STATE(1364)] = 49884, + [SMALL_STATE(1365)] = 49914, + [SMALL_STATE(1366)] = 49944, + [SMALL_STATE(1367)] = 49974, + [SMALL_STATE(1368)] = 50004, + [SMALL_STATE(1369)] = 50042, + [SMALL_STATE(1370)] = 50072, + [SMALL_STATE(1371)] = 50102, + [SMALL_STATE(1372)] = 50140, + [SMALL_STATE(1373)] = 50170, + [SMALL_STATE(1374)] = 50200, + [SMALL_STATE(1375)] = 50233, + [SMALL_STATE(1376)] = 50266, + [SMALL_STATE(1377)] = 50299, + [SMALL_STATE(1378)] = 50326, + [SMALL_STATE(1379)] = 50353, + [SMALL_STATE(1380)] = 50380, + [SMALL_STATE(1381)] = 50404, + [SMALL_STATE(1382)] = 50430, + [SMALL_STATE(1383)] = 50456, + [SMALL_STATE(1384)] = 50490, + [SMALL_STATE(1385)] = 50544, + [SMALL_STATE(1386)] = 50570, + [SMALL_STATE(1387)] = 50596, + [SMALL_STATE(1388)] = 50650, + [SMALL_STATE(1389)] = 50675, + [SMALL_STATE(1390)] = 50700, + [SMALL_STATE(1391)] = 50725, + [SMALL_STATE(1392)] = 50748, + [SMALL_STATE(1393)] = 50773, + [SMALL_STATE(1394)] = 50798, + [SMALL_STATE(1395)] = 50823, + [SMALL_STATE(1396)] = 50847, + [SMALL_STATE(1397)] = 50875, + [SMALL_STATE(1398)] = 50897, + [SMALL_STATE(1399)] = 50919, + [SMALL_STATE(1400)] = 50965, + [SMALL_STATE(1401)] = 50989, + [SMALL_STATE(1402)] = 51015, + [SMALL_STATE(1403)] = 51037, + [SMALL_STATE(1404)] = 51059, + [SMALL_STATE(1405)] = 51085, + [SMALL_STATE(1406)] = 51109, + [SMALL_STATE(1407)] = 51135, + [SMALL_STATE(1408)] = 51179, + [SMALL_STATE(1409)] = 51201, + [SMALL_STATE(1410)] = 51225, + [SMALL_STATE(1411)] = 51249, + [SMALL_STATE(1412)] = 51273, + [SMALL_STATE(1413)] = 51297, + [SMALL_STATE(1414)] = 51321, + [SMALL_STATE(1415)] = 51345, + [SMALL_STATE(1416)] = 51367, + [SMALL_STATE(1417)] = 51411, + [SMALL_STATE(1418)] = 51433, + [SMALL_STATE(1419)] = 51455, + [SMALL_STATE(1420)] = 51479, + [SMALL_STATE(1421)] = 51505, + [SMALL_STATE(1422)] = 51531, + [SMALL_STATE(1423)] = 51552, + [SMALL_STATE(1424)] = 51573, + [SMALL_STATE(1425)] = 51594, + [SMALL_STATE(1426)] = 51615, + [SMALL_STATE(1427)] = 51636, + [SMALL_STATE(1428)] = 51659, + [SMALL_STATE(1429)] = 51680, + [SMALL_STATE(1430)] = 51701, + [SMALL_STATE(1431)] = 51724, + [SMALL_STATE(1432)] = 51745, + [SMALL_STATE(1433)] = 51766, + [SMALL_STATE(1434)] = 51787, + [SMALL_STATE(1435)] = 51808, + [SMALL_STATE(1436)] = 51829, + [SMALL_STATE(1437)] = 51850, + [SMALL_STATE(1438)] = 51871, + [SMALL_STATE(1439)] = 51894, + [SMALL_STATE(1440)] = 51915, + [SMALL_STATE(1441)] = 51936, + [SMALL_STATE(1442)] = 51957, + [SMALL_STATE(1443)] = 51978, + [SMALL_STATE(1444)] = 51999, + [SMALL_STATE(1445)] = 52020, + [SMALL_STATE(1446)] = 52041, + [SMALL_STATE(1447)] = 52062, + [SMALL_STATE(1448)] = 52107, + [SMALL_STATE(1449)] = 52128, + [SMALL_STATE(1450)] = 52153, + [SMALL_STATE(1451)] = 52178, + [SMALL_STATE(1452)] = 52202, + [SMALL_STATE(1453)] = 52226, + [SMALL_STATE(1454)] = 52250, + [SMALL_STATE(1455)] = 52272, + [SMALL_STATE(1456)] = 52296, + [SMALL_STATE(1457)] = 52320, + [SMALL_STATE(1458)] = 52344, + [SMALL_STATE(1459)] = 52368, + [SMALL_STATE(1460)] = 52392, + [SMALL_STATE(1461)] = 52414, + [SMALL_STATE(1462)] = 52436, + [SMALL_STATE(1463)] = 52457, + [SMALL_STATE(1464)] = 52478, + [SMALL_STATE(1465)] = 52499, + [SMALL_STATE(1466)] = 52524, + [SMALL_STATE(1467)] = 52549, + [SMALL_STATE(1468)] = 52574, + [SMALL_STATE(1469)] = 52599, + [SMALL_STATE(1470)] = 52620, + [SMALL_STATE(1471)] = 52641, + [SMALL_STATE(1472)] = 52666, + [SMALL_STATE(1473)] = 52687, + [SMALL_STATE(1474)] = 52708, + [SMALL_STATE(1475)] = 52729, + [SMALL_STATE(1476)] = 52750, + [SMALL_STATE(1477)] = 52771, + [SMALL_STATE(1478)] = 52792, + [SMALL_STATE(1479)] = 52813, + [SMALL_STATE(1480)] = 52834, + [SMALL_STATE(1481)] = 52855, + [SMALL_STATE(1482)] = 52876, + [SMALL_STATE(1483)] = 52897, + [SMALL_STATE(1484)] = 52920, + [SMALL_STATE(1485)] = 52941, + [SMALL_STATE(1486)] = 52966, + [SMALL_STATE(1487)] = 52989, + [SMALL_STATE(1488)] = 53010, + [SMALL_STATE(1489)] = 53035, + [SMALL_STATE(1490)] = 53056, + [SMALL_STATE(1491)] = 53079, + [SMALL_STATE(1492)] = 53100, + [SMALL_STATE(1493)] = 53123, + [SMALL_STATE(1494)] = 53144, + [SMALL_STATE(1495)] = 53165, + [SMALL_STATE(1496)] = 53186, + [SMALL_STATE(1497)] = 53207, + [SMALL_STATE(1498)] = 53232, + [SMALL_STATE(1499)] = 53253, + [SMALL_STATE(1500)] = 53274, + [SMALL_STATE(1501)] = 53295, + [SMALL_STATE(1502)] = 53316, + [SMALL_STATE(1503)] = 53337, + [SMALL_STATE(1504)] = 53358, + [SMALL_STATE(1505)] = 53379, + [SMALL_STATE(1506)] = 53411, + [SMALL_STATE(1507)] = 53435, + [SMALL_STATE(1508)] = 53459, + [SMALL_STATE(1509)] = 53491, + [SMALL_STATE(1510)] = 53523, + [SMALL_STATE(1511)] = 53555, + [SMALL_STATE(1512)] = 53587, + [SMALL_STATE(1513)] = 53613, + [SMALL_STATE(1514)] = 53645, + [SMALL_STATE(1515)] = 53669, + [SMALL_STATE(1516)] = 53701, + [SMALL_STATE(1517)] = 53727, + [SMALL_STATE(1518)] = 53751, + [SMALL_STATE(1519)] = 53783, + [SMALL_STATE(1520)] = 53806, + [SMALL_STATE(1521)] = 53839, + [SMALL_STATE(1522)] = 53864, + [SMALL_STATE(1523)] = 53887, + [SMALL_STATE(1524)] = 53914, + [SMALL_STATE(1525)] = 53937, + [SMALL_STATE(1526)] = 53970, + [SMALL_STATE(1527)] = 53999, + [SMALL_STATE(1528)] = 54030, + [SMALL_STATE(1529)] = 54063, + [SMALL_STATE(1530)] = 54096, + [SMALL_STATE(1531)] = 54122, + [SMALL_STATE(1532)] = 54154, + [SMALL_STATE(1533)] = 54186, + [SMALL_STATE(1534)] = 54216, + [SMALL_STATE(1535)] = 54242, + [SMALL_STATE(1536)] = 54268, + [SMALL_STATE(1537)] = 54294, + [SMALL_STATE(1538)] = 54324, + [SMALL_STATE(1539)] = 54346, + [SMALL_STATE(1540)] = 54372, + [SMALL_STATE(1541)] = 54402, + [SMALL_STATE(1542)] = 54428, + [SMALL_STATE(1543)] = 54458, + [SMALL_STATE(1544)] = 54488, + [SMALL_STATE(1545)] = 54520, + [SMALL_STATE(1546)] = 54546, + [SMALL_STATE(1547)] = 54568, + [SMALL_STATE(1548)] = 54594, + [SMALL_STATE(1549)] = 54624, + [SMALL_STATE(1550)] = 54650, + [SMALL_STATE(1551)] = 54680, + [SMALL_STATE(1552)] = 54710, + [SMALL_STATE(1553)] = 54740, + [SMALL_STATE(1554)] = 54762, + [SMALL_STATE(1555)] = 54792, + [SMALL_STATE(1556)] = 54814, + [SMALL_STATE(1557)] = 54844, + [SMALL_STATE(1558)] = 54870, + [SMALL_STATE(1559)] = 54902, + [SMALL_STATE(1560)] = 54932, + [SMALL_STATE(1561)] = 54962, + [SMALL_STATE(1562)] = 54992, + [SMALL_STATE(1563)] = 55022, + [SMALL_STATE(1564)] = 55044, + [SMALL_STATE(1565)] = 55074, + [SMALL_STATE(1566)] = 55104, + [SMALL_STATE(1567)] = 55134, + [SMALL_STATE(1568)] = 55164, + [SMALL_STATE(1569)] = 55194, + [SMALL_STATE(1570)] = 55224, + [SMALL_STATE(1571)] = 55246, + [SMALL_STATE(1572)] = 55272, + [SMALL_STATE(1573)] = 55291, + [SMALL_STATE(1574)] = 55318, + [SMALL_STATE(1575)] = 55345, + [SMALL_STATE(1576)] = 55372, + [SMALL_STATE(1577)] = 55395, + [SMALL_STATE(1578)] = 55422, + [SMALL_STATE(1579)] = 55451, + [SMALL_STATE(1580)] = 55470, + [SMALL_STATE(1581)] = 55497, + [SMALL_STATE(1582)] = 55524, + [SMALL_STATE(1583)] = 55543, + [SMALL_STATE(1584)] = 55564, + [SMALL_STATE(1585)] = 55585, + [SMALL_STATE(1586)] = 55612, + [SMALL_STATE(1587)] = 55631, + [SMALL_STATE(1588)] = 55656, + [SMALL_STATE(1589)] = 55683, + [SMALL_STATE(1590)] = 55702, + [SMALL_STATE(1591)] = 55731, + [SMALL_STATE(1592)] = 55760, + [SMALL_STATE(1593)] = 55789, + [SMALL_STATE(1594)] = 55808, + [SMALL_STATE(1595)] = 55827, + [SMALL_STATE(1596)] = 55856, + [SMALL_STATE(1597)] = 55875, + [SMALL_STATE(1598)] = 55894, + [SMALL_STATE(1599)] = 55917, + [SMALL_STATE(1600)] = 55944, + [SMALL_STATE(1601)] = 55971, + [SMALL_STATE(1602)] = 55994, + [SMALL_STATE(1603)] = 56021, + [SMALL_STATE(1604)] = 56050, + [SMALL_STATE(1605)] = 56065, + [SMALL_STATE(1606)] = 56084, + [SMALL_STATE(1607)] = 56111, + [SMALL_STATE(1608)] = 56138, + [SMALL_STATE(1609)] = 56165, + [SMALL_STATE(1610)] = 56188, + [SMALL_STATE(1611)] = 56207, + [SMALL_STATE(1612)] = 56234, + [SMALL_STATE(1613)] = 56260, + [SMALL_STATE(1614)] = 56276, + [SMALL_STATE(1615)] = 56290, + [SMALL_STATE(1616)] = 56304, + [SMALL_STATE(1617)] = 56318, + [SMALL_STATE(1618)] = 56334, + [SMALL_STATE(1619)] = 56360, + [SMALL_STATE(1620)] = 56386, + [SMALL_STATE(1621)] = 56412, + [SMALL_STATE(1622)] = 56428, + [SMALL_STATE(1623)] = 56442, + [SMALL_STATE(1624)] = 56468, + [SMALL_STATE(1625)] = 56494, + [SMALL_STATE(1626)] = 56518, + [SMALL_STATE(1627)] = 56544, + [SMALL_STATE(1628)] = 56570, + [SMALL_STATE(1629)] = 56596, + [SMALL_STATE(1630)] = 56622, + [SMALL_STATE(1631)] = 56646, + [SMALL_STATE(1632)] = 56672, + [SMALL_STATE(1633)] = 56686, + [SMALL_STATE(1634)] = 56712, + [SMALL_STATE(1635)] = 56738, + [SMALL_STATE(1636)] = 56764, + [SMALL_STATE(1637)] = 56778, + [SMALL_STATE(1638)] = 56804, + [SMALL_STATE(1639)] = 56830, + [SMALL_STATE(1640)] = 56856, + [SMALL_STATE(1641)] = 56872, + [SMALL_STATE(1642)] = 56886, + [SMALL_STATE(1643)] = 56910, + [SMALL_STATE(1644)] = 56934, + [SMALL_STATE(1645)] = 56950, + [SMALL_STATE(1646)] = 56966, + [SMALL_STATE(1647)] = 56992, + [SMALL_STATE(1648)] = 57018, + [SMALL_STATE(1649)] = 57040, + [SMALL_STATE(1650)] = 57066, + [SMALL_STATE(1651)] = 57082, + [SMALL_STATE(1652)] = 57108, + [SMALL_STATE(1653)] = 57134, + [SMALL_STATE(1654)] = 57156, + [SMALL_STATE(1655)] = 57180, + [SMALL_STATE(1656)] = 57196, + [SMALL_STATE(1657)] = 57222, + [SMALL_STATE(1658)] = 57248, + [SMALL_STATE(1659)] = 57271, + [SMALL_STATE(1660)] = 57294, + [SMALL_STATE(1661)] = 57311, + [SMALL_STATE(1662)] = 57334, + [SMALL_STATE(1663)] = 57357, + [SMALL_STATE(1664)] = 57380, + [SMALL_STATE(1665)] = 57397, + [SMALL_STATE(1666)] = 57420, + [SMALL_STATE(1667)] = 57443, + [SMALL_STATE(1668)] = 57466, + [SMALL_STATE(1669)] = 57489, + [SMALL_STATE(1670)] = 57512, + [SMALL_STATE(1671)] = 57535, + [SMALL_STATE(1672)] = 57558, + [SMALL_STATE(1673)] = 57581, + [SMALL_STATE(1674)] = 57604, + [SMALL_STATE(1675)] = 57627, + [SMALL_STATE(1676)] = 57650, + [SMALL_STATE(1677)] = 57673, + [SMALL_STATE(1678)] = 57690, + [SMALL_STATE(1679)] = 57713, + [SMALL_STATE(1680)] = 57730, + [SMALL_STATE(1681)] = 57753, + [SMALL_STATE(1682)] = 57776, + [SMALL_STATE(1683)] = 57799, + [SMALL_STATE(1684)] = 57822, + [SMALL_STATE(1685)] = 57845, + [SMALL_STATE(1686)] = 57862, + [SMALL_STATE(1687)] = 57885, + [SMALL_STATE(1688)] = 57906, + [SMALL_STATE(1689)] = 57923, + [SMALL_STATE(1690)] = 57946, + [SMALL_STATE(1691)] = 57969, + [SMALL_STATE(1692)] = 57992, + [SMALL_STATE(1693)] = 58009, + [SMALL_STATE(1694)] = 58032, + [SMALL_STATE(1695)] = 58055, + [SMALL_STATE(1696)] = 58078, + [SMALL_STATE(1697)] = 58095, + [SMALL_STATE(1698)] = 58114, + [SMALL_STATE(1699)] = 58137, + [SMALL_STATE(1700)] = 58160, + [SMALL_STATE(1701)] = 58183, + [SMALL_STATE(1702)] = 58200, + [SMALL_STATE(1703)] = 58223, + [SMALL_STATE(1704)] = 58246, + [SMALL_STATE(1705)] = 58267, + [SMALL_STATE(1706)] = 58290, + [SMALL_STATE(1707)] = 58313, + [SMALL_STATE(1708)] = 58334, + [SMALL_STATE(1709)] = 58353, + [SMALL_STATE(1710)] = 58376, + [SMALL_STATE(1711)] = 58393, + [SMALL_STATE(1712)] = 58414, + [SMALL_STATE(1713)] = 58437, + [SMALL_STATE(1714)] = 58458, + [SMALL_STATE(1715)] = 58481, + [SMALL_STATE(1716)] = 58504, + [SMALL_STATE(1717)] = 58521, + [SMALL_STATE(1718)] = 58542, + [SMALL_STATE(1719)] = 58565, + [SMALL_STATE(1720)] = 58588, + [SMALL_STATE(1721)] = 58611, + [SMALL_STATE(1722)] = 58634, + [SMALL_STATE(1723)] = 58657, + [SMALL_STATE(1724)] = 58672, + [SMALL_STATE(1725)] = 58687, + [SMALL_STATE(1726)] = 58710, + [SMALL_STATE(1727)] = 58733, + [SMALL_STATE(1728)] = 58756, + [SMALL_STATE(1729)] = 58773, + [SMALL_STATE(1730)] = 58796, + [SMALL_STATE(1731)] = 58819, + [SMALL_STATE(1732)] = 58842, + [SMALL_STATE(1733)] = 58865, + [SMALL_STATE(1734)] = 58888, + [SMALL_STATE(1735)] = 58911, + [SMALL_STATE(1736)] = 58934, + [SMALL_STATE(1737)] = 58957, + [SMALL_STATE(1738)] = 58974, + [SMALL_STATE(1739)] = 58997, + [SMALL_STATE(1740)] = 59020, + [SMALL_STATE(1741)] = 59043, + [SMALL_STATE(1742)] = 59066, + [SMALL_STATE(1743)] = 59089, + [SMALL_STATE(1744)] = 59112, + [SMALL_STATE(1745)] = 59135, + [SMALL_STATE(1746)] = 59158, + [SMALL_STATE(1747)] = 59181, + [SMALL_STATE(1748)] = 59204, + [SMALL_STATE(1749)] = 59221, + [SMALL_STATE(1750)] = 59244, + [SMALL_STATE(1751)] = 59263, + [SMALL_STATE(1752)] = 59286, + [SMALL_STATE(1753)] = 59309, + [SMALL_STATE(1754)] = 59326, + [SMALL_STATE(1755)] = 59338, + [SMALL_STATE(1756)] = 59354, + [SMALL_STATE(1757)] = 59372, + [SMALL_STATE(1758)] = 59388, + [SMALL_STATE(1759)] = 59408, + [SMALL_STATE(1760)] = 59424, + [SMALL_STATE(1761)] = 59442, + [SMALL_STATE(1762)] = 59462, + [SMALL_STATE(1763)] = 59478, + [SMALL_STATE(1764)] = 59498, + [SMALL_STATE(1765)] = 59518, + [SMALL_STATE(1766)] = 59530, + [SMALL_STATE(1767)] = 59542, + [SMALL_STATE(1768)] = 59554, + [SMALL_STATE(1769)] = 59574, + [SMALL_STATE(1770)] = 59592, + [SMALL_STATE(1771)] = 59608, + [SMALL_STATE(1772)] = 59620, + [SMALL_STATE(1773)] = 59636, + [SMALL_STATE(1774)] = 59652, + [SMALL_STATE(1775)] = 59664, + [SMALL_STATE(1776)] = 59682, + [SMALL_STATE(1777)] = 59694, + [SMALL_STATE(1778)] = 59710, + [SMALL_STATE(1779)] = 59726, + [SMALL_STATE(1780)] = 59742, + [SMALL_STATE(1781)] = 59754, + [SMALL_STATE(1782)] = 59770, + [SMALL_STATE(1783)] = 59790, + [SMALL_STATE(1784)] = 59802, + [SMALL_STATE(1785)] = 59814, + [SMALL_STATE(1786)] = 59826, + [SMALL_STATE(1787)] = 59840, + [SMALL_STATE(1788)] = 59858, + [SMALL_STATE(1789)] = 59876, + [SMALL_STATE(1790)] = 59888, + [SMALL_STATE(1791)] = 59902, + [SMALL_STATE(1792)] = 59914, + [SMALL_STATE(1793)] = 59932, + [SMALL_STATE(1794)] = 59944, + [SMALL_STATE(1795)] = 59964, + [SMALL_STATE(1796)] = 59980, + [SMALL_STATE(1797)] = 59998, + [SMALL_STATE(1798)] = 60018, + [SMALL_STATE(1799)] = 60038, + [SMALL_STATE(1800)] = 60054, + [SMALL_STATE(1801)] = 60074, + [SMALL_STATE(1802)] = 60086, + [SMALL_STATE(1803)] = 60098, + [SMALL_STATE(1804)] = 60110, + [SMALL_STATE(1805)] = 60126, + [SMALL_STATE(1806)] = 60138, + [SMALL_STATE(1807)] = 60152, + [SMALL_STATE(1808)] = 60164, + [SMALL_STATE(1809)] = 60182, + [SMALL_STATE(1810)] = 60194, + [SMALL_STATE(1811)] = 60210, + [SMALL_STATE(1812)] = 60228, + [SMALL_STATE(1813)] = 60240, + [SMALL_STATE(1814)] = 60257, + [SMALL_STATE(1815)] = 60274, + [SMALL_STATE(1816)] = 60287, + [SMALL_STATE(1817)] = 60304, + [SMALL_STATE(1818)] = 60321, + [SMALL_STATE(1819)] = 60334, + [SMALL_STATE(1820)] = 60351, + [SMALL_STATE(1821)] = 60366, + [SMALL_STATE(1822)] = 60383, + [SMALL_STATE(1823)] = 60400, + [SMALL_STATE(1824)] = 60417, + [SMALL_STATE(1825)] = 60434, + [SMALL_STATE(1826)] = 60449, + [SMALL_STATE(1827)] = 60466, + [SMALL_STATE(1828)] = 60481, + [SMALL_STATE(1829)] = 60494, + [SMALL_STATE(1830)] = 60511, + [SMALL_STATE(1831)] = 60526, + [SMALL_STATE(1832)] = 60543, + [SMALL_STATE(1833)] = 60560, + [SMALL_STATE(1834)] = 60577, + [SMALL_STATE(1835)] = 60594, + [SMALL_STATE(1836)] = 60611, + [SMALL_STATE(1837)] = 60628, + [SMALL_STATE(1838)] = 60645, + [SMALL_STATE(1839)] = 60662, + [SMALL_STATE(1840)] = 60679, + [SMALL_STATE(1841)] = 60696, + [SMALL_STATE(1842)] = 60713, + [SMALL_STATE(1843)] = 60730, + [SMALL_STATE(1844)] = 60747, + [SMALL_STATE(1845)] = 60762, + [SMALL_STATE(1846)] = 60779, + [SMALL_STATE(1847)] = 60794, + [SMALL_STATE(1848)] = 60809, + [SMALL_STATE(1849)] = 60826, + [SMALL_STATE(1850)] = 60843, + [SMALL_STATE(1851)] = 60856, + [SMALL_STATE(1852)] = 60873, + [SMALL_STATE(1853)] = 60890, + [SMALL_STATE(1854)] = 60907, + [SMALL_STATE(1855)] = 60922, + [SMALL_STATE(1856)] = 60939, + [SMALL_STATE(1857)] = 60956, + [SMALL_STATE(1858)] = 60973, + [SMALL_STATE(1859)] = 60990, + [SMALL_STATE(1860)] = 61003, + [SMALL_STATE(1861)] = 61018, + [SMALL_STATE(1862)] = 61035, + [SMALL_STATE(1863)] = 61050, + [SMALL_STATE(1864)] = 61067, + [SMALL_STATE(1865)] = 61084, + [SMALL_STATE(1866)] = 61101, + [SMALL_STATE(1867)] = 61118, + [SMALL_STATE(1868)] = 61135, + [SMALL_STATE(1869)] = 61152, + [SMALL_STATE(1870)] = 61169, + [SMALL_STATE(1871)] = 61184, + [SMALL_STATE(1872)] = 61201, + [SMALL_STATE(1873)] = 61218, + [SMALL_STATE(1874)] = 61233, + [SMALL_STATE(1875)] = 61246, + [SMALL_STATE(1876)] = 61263, + [SMALL_STATE(1877)] = 61278, + [SMALL_STATE(1878)] = 61295, + [SMALL_STATE(1879)] = 61312, + [SMALL_STATE(1880)] = 61327, + [SMALL_STATE(1881)] = 61342, + [SMALL_STATE(1882)] = 61357, + [SMALL_STATE(1883)] = 61372, + [SMALL_STATE(1884)] = 61389, + [SMALL_STATE(1885)] = 61402, + [SMALL_STATE(1886)] = 61419, + [SMALL_STATE(1887)] = 61436, + [SMALL_STATE(1888)] = 61451, + [SMALL_STATE(1889)] = 61468, + [SMALL_STATE(1890)] = 61483, + [SMALL_STATE(1891)] = 61500, + [SMALL_STATE(1892)] = 61515, + [SMALL_STATE(1893)] = 61530, + [SMALL_STATE(1894)] = 61545, + [SMALL_STATE(1895)] = 61558, + [SMALL_STATE(1896)] = 61573, + [SMALL_STATE(1897)] = 61588, + [SMALL_STATE(1898)] = 61605, + [SMALL_STATE(1899)] = 61620, + [SMALL_STATE(1900)] = 61637, + [SMALL_STATE(1901)] = 61654, + [SMALL_STATE(1902)] = 61671, + [SMALL_STATE(1903)] = 61688, + [SMALL_STATE(1904)] = 61703, + [SMALL_STATE(1905)] = 61720, + [SMALL_STATE(1906)] = 61737, + [SMALL_STATE(1907)] = 61754, + [SMALL_STATE(1908)] = 61771, + [SMALL_STATE(1909)] = 61788, + [SMALL_STATE(1910)] = 61805, + [SMALL_STATE(1911)] = 61822, + [SMALL_STATE(1912)] = 61839, + [SMALL_STATE(1913)] = 61852, + [SMALL_STATE(1914)] = 61865, + [SMALL_STATE(1915)] = 61882, + [SMALL_STATE(1916)] = 61892, + [SMALL_STATE(1917)] = 61906, + [SMALL_STATE(1918)] = 61920, + [SMALL_STATE(1919)] = 61934, + [SMALL_STATE(1920)] = 61948, + [SMALL_STATE(1921)] = 61962, + [SMALL_STATE(1922)] = 61976, + [SMALL_STATE(1923)] = 61990, + [SMALL_STATE(1924)] = 62002, + [SMALL_STATE(1925)] = 62014, + [SMALL_STATE(1926)] = 62028, + [SMALL_STATE(1927)] = 62042, + [SMALL_STATE(1928)] = 62052, + [SMALL_STATE(1929)] = 62066, + [SMALL_STATE(1930)] = 62080, + [SMALL_STATE(1931)] = 62090, + [SMALL_STATE(1932)] = 62100, + [SMALL_STATE(1933)] = 62114, + [SMALL_STATE(1934)] = 62128, + [SMALL_STATE(1935)] = 62140, + [SMALL_STATE(1936)] = 62150, + [SMALL_STATE(1937)] = 62162, + [SMALL_STATE(1938)] = 62176, + [SMALL_STATE(1939)] = 62190, + [SMALL_STATE(1940)] = 62202, + [SMALL_STATE(1941)] = 62214, + [SMALL_STATE(1942)] = 62226, + [SMALL_STATE(1943)] = 62238, + [SMALL_STATE(1944)] = 62252, + [SMALL_STATE(1945)] = 62266, + [SMALL_STATE(1946)] = 62278, + [SMALL_STATE(1947)] = 62292, + [SMALL_STATE(1948)] = 62306, + [SMALL_STATE(1949)] = 62320, + [SMALL_STATE(1950)] = 62332, + [SMALL_STATE(1951)] = 62346, + [SMALL_STATE(1952)] = 62358, + [SMALL_STATE(1953)] = 62368, + [SMALL_STATE(1954)] = 62382, + [SMALL_STATE(1955)] = 62396, + [SMALL_STATE(1956)] = 62408, + [SMALL_STATE(1957)] = 62422, + [SMALL_STATE(1958)] = 62436, + [SMALL_STATE(1959)] = 62450, + [SMALL_STATE(1960)] = 62464, + [SMALL_STATE(1961)] = 62474, + [SMALL_STATE(1962)] = 62488, + [SMALL_STATE(1963)] = 62502, + [SMALL_STATE(1964)] = 62516, + [SMALL_STATE(1965)] = 62528, + [SMALL_STATE(1966)] = 62542, + [SMALL_STATE(1967)] = 62556, + [SMALL_STATE(1968)] = 62566, + [SMALL_STATE(1969)] = 62578, + [SMALL_STATE(1970)] = 62592, + [SMALL_STATE(1971)] = 62606, + [SMALL_STATE(1972)] = 62620, + [SMALL_STATE(1973)] = 62634, + [SMALL_STATE(1974)] = 62648, + [SMALL_STATE(1975)] = 62662, + [SMALL_STATE(1976)] = 62672, + [SMALL_STATE(1977)] = 62682, + [SMALL_STATE(1978)] = 62696, + [SMALL_STATE(1979)] = 62706, + [SMALL_STATE(1980)] = 62718, + [SMALL_STATE(1981)] = 62732, + [SMALL_STATE(1982)] = 62746, + [SMALL_STATE(1983)] = 62760, + [SMALL_STATE(1984)] = 62774, + [SMALL_STATE(1985)] = 62788, + [SMALL_STATE(1986)] = 62798, + [SMALL_STATE(1987)] = 62808, + [SMALL_STATE(1988)] = 62822, + [SMALL_STATE(1989)] = 62836, + [SMALL_STATE(1990)] = 62850, + [SMALL_STATE(1991)] = 62864, + [SMALL_STATE(1992)] = 62876, + [SMALL_STATE(1993)] = 62890, + [SMALL_STATE(1994)] = 62902, + [SMALL_STATE(1995)] = 62916, + [SMALL_STATE(1996)] = 62930, + [SMALL_STATE(1997)] = 62940, + [SMALL_STATE(1998)] = 62954, + [SMALL_STATE(1999)] = 62968, + [SMALL_STATE(2000)] = 62982, + [SMALL_STATE(2001)] = 62996, + [SMALL_STATE(2002)] = 63010, + [SMALL_STATE(2003)] = 63024, + [SMALL_STATE(2004)] = 63038, + [SMALL_STATE(2005)] = 63050, + [SMALL_STATE(2006)] = 63064, + [SMALL_STATE(2007)] = 63074, + [SMALL_STATE(2008)] = 63088, + [SMALL_STATE(2009)] = 63098, + [SMALL_STATE(2010)] = 63110, + [SMALL_STATE(2011)] = 63124, + [SMALL_STATE(2012)] = 63138, + [SMALL_STATE(2013)] = 63152, + [SMALL_STATE(2014)] = 63164, + [SMALL_STATE(2015)] = 63178, + [SMALL_STATE(2016)] = 63188, + [SMALL_STATE(2017)] = 63200, + [SMALL_STATE(2018)] = 63214, + [SMALL_STATE(2019)] = 63226, + [SMALL_STATE(2020)] = 63240, + [SMALL_STATE(2021)] = 63254, + [SMALL_STATE(2022)] = 63268, + [SMALL_STATE(2023)] = 63282, + [SMALL_STATE(2024)] = 63296, + [SMALL_STATE(2025)] = 63308, + [SMALL_STATE(2026)] = 63322, + [SMALL_STATE(2027)] = 63334, + [SMALL_STATE(2028)] = 63348, + [SMALL_STATE(2029)] = 63362, + [SMALL_STATE(2030)] = 63376, + [SMALL_STATE(2031)] = 63390, + [SMALL_STATE(2032)] = 63404, + [SMALL_STATE(2033)] = 63418, + [SMALL_STATE(2034)] = 63430, + [SMALL_STATE(2035)] = 63444, + [SMALL_STATE(2036)] = 63458, + [SMALL_STATE(2037)] = 63472, + [SMALL_STATE(2038)] = 63484, + [SMALL_STATE(2039)] = 63498, + [SMALL_STATE(2040)] = 63512, + [SMALL_STATE(2041)] = 63526, + [SMALL_STATE(2042)] = 63540, + [SMALL_STATE(2043)] = 63550, + [SMALL_STATE(2044)] = 63564, + [SMALL_STATE(2045)] = 63578, + [SMALL_STATE(2046)] = 63590, + [SMALL_STATE(2047)] = 63604, + [SMALL_STATE(2048)] = 63618, + [SMALL_STATE(2049)] = 63632, + [SMALL_STATE(2050)] = 63646, + [SMALL_STATE(2051)] = 63660, + [SMALL_STATE(2052)] = 63670, + [SMALL_STATE(2053)] = 63684, + [SMALL_STATE(2054)] = 63698, + [SMALL_STATE(2055)] = 63712, + [SMALL_STATE(2056)] = 63726, + [SMALL_STATE(2057)] = 63740, + [SMALL_STATE(2058)] = 63754, + [SMALL_STATE(2059)] = 63768, + [SMALL_STATE(2060)] = 63782, + [SMALL_STATE(2061)] = 63796, + [SMALL_STATE(2062)] = 63810, + [SMALL_STATE(2063)] = 63824, + [SMALL_STATE(2064)] = 63838, + [SMALL_STATE(2065)] = 63852, + [SMALL_STATE(2066)] = 63866, + [SMALL_STATE(2067)] = 63880, + [SMALL_STATE(2068)] = 63894, + [SMALL_STATE(2069)] = 63908, + [SMALL_STATE(2070)] = 63922, + [SMALL_STATE(2071)] = 63932, + [SMALL_STATE(2072)] = 63946, + [SMALL_STATE(2073)] = 63956, + [SMALL_STATE(2074)] = 63970, + [SMALL_STATE(2075)] = 63980, + [SMALL_STATE(2076)] = 63994, + [SMALL_STATE(2077)] = 64008, + [SMALL_STATE(2078)] = 64018, + [SMALL_STATE(2079)] = 64032, + [SMALL_STATE(2080)] = 64042, + [SMALL_STATE(2081)] = 64052, + [SMALL_STATE(2082)] = 64066, + [SMALL_STATE(2083)] = 64076, + [SMALL_STATE(2084)] = 64090, + [SMALL_STATE(2085)] = 64104, + [SMALL_STATE(2086)] = 64118, + [SMALL_STATE(2087)] = 64132, + [SMALL_STATE(2088)] = 64142, + [SMALL_STATE(2089)] = 64156, + [SMALL_STATE(2090)] = 64166, + [SMALL_STATE(2091)] = 64180, + [SMALL_STATE(2092)] = 64194, + [SMALL_STATE(2093)] = 64208, + [SMALL_STATE(2094)] = 64222, + [SMALL_STATE(2095)] = 64236, + [SMALL_STATE(2096)] = 64250, + [SMALL_STATE(2097)] = 64264, + [SMALL_STATE(2098)] = 64278, + [SMALL_STATE(2099)] = 64292, + [SMALL_STATE(2100)] = 64306, + [SMALL_STATE(2101)] = 64320, + [SMALL_STATE(2102)] = 64334, + [SMALL_STATE(2103)] = 64348, + [SMALL_STATE(2104)] = 64360, + [SMALL_STATE(2105)] = 64374, + [SMALL_STATE(2106)] = 64388, + [SMALL_STATE(2107)] = 64402, + [SMALL_STATE(2108)] = 64416, + [SMALL_STATE(2109)] = 64430, + [SMALL_STATE(2110)] = 64444, + [SMALL_STATE(2111)] = 64456, + [SMALL_STATE(2112)] = 64470, + [SMALL_STATE(2113)] = 64484, + [SMALL_STATE(2114)] = 64498, + [SMALL_STATE(2115)] = 64512, + [SMALL_STATE(2116)] = 64526, + [SMALL_STATE(2117)] = 64540, + [SMALL_STATE(2118)] = 64554, + [SMALL_STATE(2119)] = 64568, + [SMALL_STATE(2120)] = 64582, + [SMALL_STATE(2121)] = 64596, + [SMALL_STATE(2122)] = 64610, + [SMALL_STATE(2123)] = 64624, + [SMALL_STATE(2124)] = 64638, + [SMALL_STATE(2125)] = 64652, + [SMALL_STATE(2126)] = 64666, + [SMALL_STATE(2127)] = 64680, + [SMALL_STATE(2128)] = 64694, + [SMALL_STATE(2129)] = 64708, + [SMALL_STATE(2130)] = 64722, + [SMALL_STATE(2131)] = 64736, + [SMALL_STATE(2132)] = 64750, + [SMALL_STATE(2133)] = 64764, + [SMALL_STATE(2134)] = 64778, + [SMALL_STATE(2135)] = 64792, + [SMALL_STATE(2136)] = 64806, + [SMALL_STATE(2137)] = 64820, + [SMALL_STATE(2138)] = 64834, + [SMALL_STATE(2139)] = 64848, + [SMALL_STATE(2140)] = 64860, + [SMALL_STATE(2141)] = 64874, + [SMALL_STATE(2142)] = 64886, + [SMALL_STATE(2143)] = 64900, + [SMALL_STATE(2144)] = 64912, + [SMALL_STATE(2145)] = 64926, + [SMALL_STATE(2146)] = 64940, + [SMALL_STATE(2147)] = 64954, + [SMALL_STATE(2148)] = 64968, + [SMALL_STATE(2149)] = 64982, + [SMALL_STATE(2150)] = 64996, + [SMALL_STATE(2151)] = 65010, + [SMALL_STATE(2152)] = 65024, + [SMALL_STATE(2153)] = 65038, + [SMALL_STATE(2154)] = 65052, + [SMALL_STATE(2155)] = 65066, + [SMALL_STATE(2156)] = 65078, + [SMALL_STATE(2157)] = 65092, + [SMALL_STATE(2158)] = 65106, + [SMALL_STATE(2159)] = 65120, + [SMALL_STATE(2160)] = 65134, + [SMALL_STATE(2161)] = 65148, + [SMALL_STATE(2162)] = 65160, + [SMALL_STATE(2163)] = 65172, + [SMALL_STATE(2164)] = 65186, + [SMALL_STATE(2165)] = 65200, + [SMALL_STATE(2166)] = 65214, + [SMALL_STATE(2167)] = 65228, + [SMALL_STATE(2168)] = 65242, + [SMALL_STATE(2169)] = 65256, + [SMALL_STATE(2170)] = 65270, + [SMALL_STATE(2171)] = 65280, + [SMALL_STATE(2172)] = 65294, + [SMALL_STATE(2173)] = 65308, + [SMALL_STATE(2174)] = 65322, + [SMALL_STATE(2175)] = 65333, + [SMALL_STATE(2176)] = 65344, + [SMALL_STATE(2177)] = 65353, + [SMALL_STATE(2178)] = 65364, + [SMALL_STATE(2179)] = 65375, + [SMALL_STATE(2180)] = 65384, + [SMALL_STATE(2181)] = 65395, + [SMALL_STATE(2182)] = 65404, + [SMALL_STATE(2183)] = 65415, + [SMALL_STATE(2184)] = 65426, + [SMALL_STATE(2185)] = 65437, + [SMALL_STATE(2186)] = 65448, + [SMALL_STATE(2187)] = 65459, + [SMALL_STATE(2188)] = 65470, + [SMALL_STATE(2189)] = 65481, + [SMALL_STATE(2190)] = 65492, + [SMALL_STATE(2191)] = 65503, + [SMALL_STATE(2192)] = 65514, + [SMALL_STATE(2193)] = 65525, + [SMALL_STATE(2194)] = 65536, + [SMALL_STATE(2195)] = 65547, + [SMALL_STATE(2196)] = 65558, + [SMALL_STATE(2197)] = 65569, + [SMALL_STATE(2198)] = 65580, + [SMALL_STATE(2199)] = 65591, + [SMALL_STATE(2200)] = 65600, + [SMALL_STATE(2201)] = 65611, + [SMALL_STATE(2202)] = 65622, + [SMALL_STATE(2203)] = 65633, + [SMALL_STATE(2204)] = 65644, + [SMALL_STATE(2205)] = 65655, + [SMALL_STATE(2206)] = 65664, + [SMALL_STATE(2207)] = 65675, + [SMALL_STATE(2208)] = 65686, + [SMALL_STATE(2209)] = 65697, + [SMALL_STATE(2210)] = 65708, + [SMALL_STATE(2211)] = 65719, + [SMALL_STATE(2212)] = 65730, + [SMALL_STATE(2213)] = 65741, + [SMALL_STATE(2214)] = 65752, + [SMALL_STATE(2215)] = 65763, + [SMALL_STATE(2216)] = 65774, + [SMALL_STATE(2217)] = 65785, + [SMALL_STATE(2218)] = 65796, + [SMALL_STATE(2219)] = 65807, + [SMALL_STATE(2220)] = 65816, + [SMALL_STATE(2221)] = 65827, + [SMALL_STATE(2222)] = 65838, + [SMALL_STATE(2223)] = 65849, + [SMALL_STATE(2224)] = 65860, + [SMALL_STATE(2225)] = 65871, + [SMALL_STATE(2226)] = 65880, + [SMALL_STATE(2227)] = 65891, + [SMALL_STATE(2228)] = 65902, + [SMALL_STATE(2229)] = 65913, + [SMALL_STATE(2230)] = 65924, + [SMALL_STATE(2231)] = 65935, + [SMALL_STATE(2232)] = 65946, + [SMALL_STATE(2233)] = 65957, + [SMALL_STATE(2234)] = 65968, + [SMALL_STATE(2235)] = 65979, + [SMALL_STATE(2236)] = 65990, + [SMALL_STATE(2237)] = 66001, + [SMALL_STATE(2238)] = 66012, + [SMALL_STATE(2239)] = 66023, + [SMALL_STATE(2240)] = 66034, + [SMALL_STATE(2241)] = 66045, + [SMALL_STATE(2242)] = 66056, + [SMALL_STATE(2243)] = 66065, + [SMALL_STATE(2244)] = 66076, + [SMALL_STATE(2245)] = 66087, + [SMALL_STATE(2246)] = 66098, + [SMALL_STATE(2247)] = 66109, + [SMALL_STATE(2248)] = 66120, + [SMALL_STATE(2249)] = 66131, + [SMALL_STATE(2250)] = 66142, + [SMALL_STATE(2251)] = 66153, + [SMALL_STATE(2252)] = 66162, + [SMALL_STATE(2253)] = 66173, + [SMALL_STATE(2254)] = 66182, + [SMALL_STATE(2255)] = 66193, + [SMALL_STATE(2256)] = 66204, + [SMALL_STATE(2257)] = 66215, + [SMALL_STATE(2258)] = 66226, + [SMALL_STATE(2259)] = 66237, + [SMALL_STATE(2260)] = 66246, + [SMALL_STATE(2261)] = 66257, + [SMALL_STATE(2262)] = 66268, + [SMALL_STATE(2263)] = 66279, + [SMALL_STATE(2264)] = 66290, + [SMALL_STATE(2265)] = 66301, + [SMALL_STATE(2266)] = 66312, + [SMALL_STATE(2267)] = 66323, + [SMALL_STATE(2268)] = 66334, + [SMALL_STATE(2269)] = 66343, + [SMALL_STATE(2270)] = 66354, + [SMALL_STATE(2271)] = 66365, + [SMALL_STATE(2272)] = 66376, + [SMALL_STATE(2273)] = 66387, + [SMALL_STATE(2274)] = 66398, + [SMALL_STATE(2275)] = 66409, + [SMALL_STATE(2276)] = 66420, + [SMALL_STATE(2277)] = 66431, + [SMALL_STATE(2278)] = 66442, + [SMALL_STATE(2279)] = 66451, + [SMALL_STATE(2280)] = 66460, + [SMALL_STATE(2281)] = 66471, + [SMALL_STATE(2282)] = 66482, + [SMALL_STATE(2283)] = 66493, + [SMALL_STATE(2284)] = 66504, + [SMALL_STATE(2285)] = 66515, + [SMALL_STATE(2286)] = 66526, + [SMALL_STATE(2287)] = 66537, + [SMALL_STATE(2288)] = 66548, + [SMALL_STATE(2289)] = 66559, + [SMALL_STATE(2290)] = 66570, + [SMALL_STATE(2291)] = 66581, + [SMALL_STATE(2292)] = 66592, + [SMALL_STATE(2293)] = 66603, + [SMALL_STATE(2294)] = 66614, + [SMALL_STATE(2295)] = 66623, + [SMALL_STATE(2296)] = 66634, + [SMALL_STATE(2297)] = 66645, + [SMALL_STATE(2298)] = 66656, + [SMALL_STATE(2299)] = 66667, + [SMALL_STATE(2300)] = 66678, + [SMALL_STATE(2301)] = 66689, + [SMALL_STATE(2302)] = 66700, + [SMALL_STATE(2303)] = 66711, + [SMALL_STATE(2304)] = 66720, + [SMALL_STATE(2305)] = 66731, + [SMALL_STATE(2306)] = 66742, + [SMALL_STATE(2307)] = 66753, + [SMALL_STATE(2308)] = 66764, + [SMALL_STATE(2309)] = 66775, + [SMALL_STATE(2310)] = 66786, + [SMALL_STATE(2311)] = 66797, + [SMALL_STATE(2312)] = 66808, + [SMALL_STATE(2313)] = 66819, + [SMALL_STATE(2314)] = 66830, + [SMALL_STATE(2315)] = 66841, + [SMALL_STATE(2316)] = 66852, + [SMALL_STATE(2317)] = 66863, + [SMALL_STATE(2318)] = 66874, + [SMALL_STATE(2319)] = 66885, + [SMALL_STATE(2320)] = 66896, + [SMALL_STATE(2321)] = 66907, + [SMALL_STATE(2322)] = 66916, + [SMALL_STATE(2323)] = 66927, + [SMALL_STATE(2324)] = 66938, + [SMALL_STATE(2325)] = 66949, + [SMALL_STATE(2326)] = 66960, + [SMALL_STATE(2327)] = 66971, + [SMALL_STATE(2328)] = 66980, + [SMALL_STATE(2329)] = 66989, + [SMALL_STATE(2330)] = 67000, + [SMALL_STATE(2331)] = 67011, + [SMALL_STATE(2332)] = 67022, + [SMALL_STATE(2333)] = 67033, + [SMALL_STATE(2334)] = 67044, + [SMALL_STATE(2335)] = 67055, + [SMALL_STATE(2336)] = 67066, + [SMALL_STATE(2337)] = 67077, + [SMALL_STATE(2338)] = 67088, + [SMALL_STATE(2339)] = 67099, + [SMALL_STATE(2340)] = 67110, + [SMALL_STATE(2341)] = 67121, + [SMALL_STATE(2342)] = 67130, + [SMALL_STATE(2343)] = 67141, + [SMALL_STATE(2344)] = 67152, + [SMALL_STATE(2345)] = 67163, + [SMALL_STATE(2346)] = 67174, + [SMALL_STATE(2347)] = 67185, + [SMALL_STATE(2348)] = 67196, + [SMALL_STATE(2349)] = 67205, + [SMALL_STATE(2350)] = 67216, + [SMALL_STATE(2351)] = 67227, + [SMALL_STATE(2352)] = 67238, + [SMALL_STATE(2353)] = 67249, + [SMALL_STATE(2354)] = 67260, + [SMALL_STATE(2355)] = 67271, + [SMALL_STATE(2356)] = 67282, + [SMALL_STATE(2357)] = 67293, + [SMALL_STATE(2358)] = 67302, + [SMALL_STATE(2359)] = 67311, + [SMALL_STATE(2360)] = 67320, + [SMALL_STATE(2361)] = 67331, + [SMALL_STATE(2362)] = 67342, + [SMALL_STATE(2363)] = 67353, + [SMALL_STATE(2364)] = 67364, + [SMALL_STATE(2365)] = 67373, + [SMALL_STATE(2366)] = 67384, + [SMALL_STATE(2367)] = 67395, + [SMALL_STATE(2368)] = 67404, + [SMALL_STATE(2369)] = 67415, + [SMALL_STATE(2370)] = 67426, + [SMALL_STATE(2371)] = 67435, + [SMALL_STATE(2372)] = 67444, + [SMALL_STATE(2373)] = 67455, + [SMALL_STATE(2374)] = 67464, + [SMALL_STATE(2375)] = 67473, + [SMALL_STATE(2376)] = 67484, + [SMALL_STATE(2377)] = 67495, + [SMALL_STATE(2378)] = 67506, + [SMALL_STATE(2379)] = 67514, + [SMALL_STATE(2380)] = 67522, + [SMALL_STATE(2381)] = 67530, + [SMALL_STATE(2382)] = 67538, + [SMALL_STATE(2383)] = 67546, + [SMALL_STATE(2384)] = 67554, + [SMALL_STATE(2385)] = 67562, + [SMALL_STATE(2386)] = 67570, + [SMALL_STATE(2387)] = 67578, + [SMALL_STATE(2388)] = 67586, + [SMALL_STATE(2389)] = 67594, + [SMALL_STATE(2390)] = 67602, + [SMALL_STATE(2391)] = 67610, + [SMALL_STATE(2392)] = 67618, + [SMALL_STATE(2393)] = 67626, + [SMALL_STATE(2394)] = 67634, + [SMALL_STATE(2395)] = 67642, + [SMALL_STATE(2396)] = 67650, + [SMALL_STATE(2397)] = 67658, + [SMALL_STATE(2398)] = 67666, + [SMALL_STATE(2399)] = 67674, + [SMALL_STATE(2400)] = 67682, + [SMALL_STATE(2401)] = 67690, + [SMALL_STATE(2402)] = 67698, + [SMALL_STATE(2403)] = 67706, + [SMALL_STATE(2404)] = 67714, + [SMALL_STATE(2405)] = 67722, + [SMALL_STATE(2406)] = 67730, + [SMALL_STATE(2407)] = 67738, + [SMALL_STATE(2408)] = 67746, + [SMALL_STATE(2409)] = 67754, + [SMALL_STATE(2410)] = 67762, + [SMALL_STATE(2411)] = 67770, + [SMALL_STATE(2412)] = 67778, + [SMALL_STATE(2413)] = 67786, + [SMALL_STATE(2414)] = 67794, + [SMALL_STATE(2415)] = 67802, + [SMALL_STATE(2416)] = 67810, + [SMALL_STATE(2417)] = 67818, + [SMALL_STATE(2418)] = 67826, + [SMALL_STATE(2419)] = 67834, + [SMALL_STATE(2420)] = 67842, + [SMALL_STATE(2421)] = 67850, + [SMALL_STATE(2422)] = 67858, + [SMALL_STATE(2423)] = 67866, + [SMALL_STATE(2424)] = 67874, + [SMALL_STATE(2425)] = 67882, + [SMALL_STATE(2426)] = 67890, + [SMALL_STATE(2427)] = 67898, + [SMALL_STATE(2428)] = 67906, + [SMALL_STATE(2429)] = 67914, + [SMALL_STATE(2430)] = 67922, + [SMALL_STATE(2431)] = 67930, + [SMALL_STATE(2432)] = 67938, + [SMALL_STATE(2433)] = 67946, + [SMALL_STATE(2434)] = 67954, + [SMALL_STATE(2435)] = 67962, + [SMALL_STATE(2436)] = 67970, + [SMALL_STATE(2437)] = 67978, + [SMALL_STATE(2438)] = 67986, + [SMALL_STATE(2439)] = 67994, + [SMALL_STATE(2440)] = 68002, + [SMALL_STATE(2441)] = 68010, + [SMALL_STATE(2442)] = 68018, + [SMALL_STATE(2443)] = 68026, + [SMALL_STATE(2444)] = 68034, + [SMALL_STATE(2445)] = 68042, + [SMALL_STATE(2446)] = 68050, + [SMALL_STATE(2447)] = 68058, + [SMALL_STATE(2448)] = 68066, + [SMALL_STATE(2449)] = 68074, + [SMALL_STATE(2450)] = 68082, + [SMALL_STATE(2451)] = 68090, + [SMALL_STATE(2452)] = 68098, + [SMALL_STATE(2453)] = 68106, + [SMALL_STATE(2454)] = 68114, + [SMALL_STATE(2455)] = 68122, + [SMALL_STATE(2456)] = 68130, + [SMALL_STATE(2457)] = 68138, + [SMALL_STATE(2458)] = 68146, + [SMALL_STATE(2459)] = 68154, + [SMALL_STATE(2460)] = 68162, + [SMALL_STATE(2461)] = 68170, + [SMALL_STATE(2462)] = 68178, + [SMALL_STATE(2463)] = 68186, + [SMALL_STATE(2464)] = 68194, + [SMALL_STATE(2465)] = 68202, + [SMALL_STATE(2466)] = 68210, + [SMALL_STATE(2467)] = 68218, + [SMALL_STATE(2468)] = 68226, + [SMALL_STATE(2469)] = 68234, + [SMALL_STATE(2470)] = 68242, + [SMALL_STATE(2471)] = 68250, + [SMALL_STATE(2472)] = 68258, + [SMALL_STATE(2473)] = 68266, + [SMALL_STATE(2474)] = 68274, + [SMALL_STATE(2475)] = 68282, + [SMALL_STATE(2476)] = 68290, + [SMALL_STATE(2477)] = 68298, + [SMALL_STATE(2478)] = 68306, + [SMALL_STATE(2479)] = 68314, + [SMALL_STATE(2480)] = 68322, + [SMALL_STATE(2481)] = 68330, + [SMALL_STATE(2482)] = 68338, + [SMALL_STATE(2483)] = 68346, + [SMALL_STATE(2484)] = 68354, + [SMALL_STATE(2485)] = 68362, + [SMALL_STATE(2486)] = 68370, + [SMALL_STATE(2487)] = 68378, + [SMALL_STATE(2488)] = 68386, + [SMALL_STATE(2489)] = 68394, + [SMALL_STATE(2490)] = 68402, + [SMALL_STATE(2491)] = 68410, + [SMALL_STATE(2492)] = 68418, + [SMALL_STATE(2493)] = 68426, + [SMALL_STATE(2494)] = 68434, + [SMALL_STATE(2495)] = 68442, + [SMALL_STATE(2496)] = 68450, + [SMALL_STATE(2497)] = 68458, + [SMALL_STATE(2498)] = 68466, + [SMALL_STATE(2499)] = 68474, + [SMALL_STATE(2500)] = 68482, + [SMALL_STATE(2501)] = 68490, + [SMALL_STATE(2502)] = 68498, + [SMALL_STATE(2503)] = 68506, + [SMALL_STATE(2504)] = 68514, + [SMALL_STATE(2505)] = 68522, + [SMALL_STATE(2506)] = 68530, + [SMALL_STATE(2507)] = 68538, + [SMALL_STATE(2508)] = 68546, + [SMALL_STATE(2509)] = 68554, + [SMALL_STATE(2510)] = 68562, + [SMALL_STATE(2511)] = 68570, + [SMALL_STATE(2512)] = 68578, + [SMALL_STATE(2513)] = 68586, + [SMALL_STATE(2514)] = 68594, + [SMALL_STATE(2515)] = 68602, + [SMALL_STATE(2516)] = 68610, + [SMALL_STATE(2517)] = 68618, + [SMALL_STATE(2518)] = 68626, + [SMALL_STATE(2519)] = 68634, + [SMALL_STATE(2520)] = 68642, + [SMALL_STATE(2521)] = 68650, + [SMALL_STATE(2522)] = 68658, + [SMALL_STATE(2523)] = 68666, + [SMALL_STATE(2524)] = 68674, + [SMALL_STATE(2525)] = 68682, + [SMALL_STATE(2526)] = 68690, + [SMALL_STATE(2527)] = 68698, + [SMALL_STATE(2528)] = 68706, + [SMALL_STATE(2529)] = 68714, + [SMALL_STATE(2530)] = 68722, + [SMALL_STATE(2531)] = 68730, + [SMALL_STATE(2532)] = 68738, + [SMALL_STATE(2533)] = 68746, + [SMALL_STATE(2534)] = 68754, + [SMALL_STATE(2535)] = 68762, + [SMALL_STATE(2536)] = 68770, + [SMALL_STATE(2537)] = 68778, + [SMALL_STATE(2538)] = 68786, + [SMALL_STATE(2539)] = 68794, + [SMALL_STATE(2540)] = 68802, + [SMALL_STATE(2541)] = 68810, + [SMALL_STATE(2542)] = 68818, + [SMALL_STATE(2543)] = 68826, + [SMALL_STATE(2544)] = 68834, + [SMALL_STATE(2545)] = 68842, + [SMALL_STATE(2546)] = 68850, + [SMALL_STATE(2547)] = 68858, + [SMALL_STATE(2548)] = 68866, + [SMALL_STATE(2549)] = 68874, + [SMALL_STATE(2550)] = 68882, + [SMALL_STATE(2551)] = 68890, + [SMALL_STATE(2552)] = 68898, + [SMALL_STATE(2553)] = 68906, + [SMALL_STATE(2554)] = 68914, + [SMALL_STATE(2555)] = 68922, + [SMALL_STATE(2556)] = 68930, + [SMALL_STATE(2557)] = 68938, + [SMALL_STATE(2558)] = 68946, + [SMALL_STATE(2559)] = 68954, + [SMALL_STATE(2560)] = 68962, + [SMALL_STATE(2561)] = 68970, + [SMALL_STATE(2562)] = 68978, + [SMALL_STATE(2563)] = 68986, + [SMALL_STATE(2564)] = 68994, + [SMALL_STATE(2565)] = 69002, + [SMALL_STATE(2566)] = 69010, + [SMALL_STATE(2567)] = 69018, + [SMALL_STATE(2568)] = 69026, + [SMALL_STATE(2569)] = 69034, + [SMALL_STATE(2570)] = 69042, + [SMALL_STATE(2571)] = 69050, + [SMALL_STATE(2572)] = 69058, + [SMALL_STATE(2573)] = 69066, + [SMALL_STATE(2574)] = 69074, + [SMALL_STATE(2575)] = 69082, + [SMALL_STATE(2576)] = 69090, + [SMALL_STATE(2577)] = 69098, + [SMALL_STATE(2578)] = 69106, + [SMALL_STATE(2579)] = 69114, + [SMALL_STATE(2580)] = 69122, + [SMALL_STATE(2581)] = 69130, + [SMALL_STATE(2582)] = 69138, + [SMALL_STATE(2583)] = 69146, + [SMALL_STATE(2584)] = 69154, + [SMALL_STATE(2585)] = 69162, + [SMALL_STATE(2586)] = 69170, + [SMALL_STATE(2587)] = 69178, + [SMALL_STATE(2588)] = 69186, + [SMALL_STATE(2589)] = 69194, + [SMALL_STATE(2590)] = 69202, + [SMALL_STATE(2591)] = 69210, + [SMALL_STATE(2592)] = 69218, + [SMALL_STATE(2593)] = 69226, + [SMALL_STATE(2594)] = 69234, + [SMALL_STATE(2595)] = 69242, + [SMALL_STATE(2596)] = 69250, + [SMALL_STATE(2597)] = 69258, + [SMALL_STATE(2598)] = 69266, + [SMALL_STATE(2599)] = 69274, + [SMALL_STATE(2600)] = 69282, + [SMALL_STATE(2601)] = 69290, + [SMALL_STATE(2602)] = 69298, + [SMALL_STATE(2603)] = 69306, + [SMALL_STATE(2604)] = 69314, + [SMALL_STATE(2605)] = 69322, + [SMALL_STATE(2606)] = 69330, + [SMALL_STATE(2607)] = 69338, + [SMALL_STATE(2608)] = 69346, + [SMALL_STATE(2609)] = 69354, + [SMALL_STATE(2610)] = 69362, + [SMALL_STATE(2611)] = 69370, + [SMALL_STATE(2612)] = 69378, + [SMALL_STATE(2613)] = 69386, + [SMALL_STATE(2614)] = 69394, + [SMALL_STATE(2615)] = 69402, + [SMALL_STATE(2616)] = 69410, + [SMALL_STATE(2617)] = 69418, + [SMALL_STATE(2618)] = 69426, + [SMALL_STATE(2619)] = 69434, + [SMALL_STATE(2620)] = 69442, + [SMALL_STATE(2621)] = 69450, + [SMALL_STATE(2622)] = 69458, + [SMALL_STATE(2623)] = 69466, + [SMALL_STATE(2624)] = 69474, + [SMALL_STATE(2625)] = 69482, + [SMALL_STATE(2626)] = 69490, + [SMALL_STATE(2627)] = 69498, + [SMALL_STATE(2628)] = 69506, + [SMALL_STATE(2629)] = 69514, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -131208,2733 +135536,2781 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1160), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(327), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2102), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(7), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(34), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(182), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1060), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2581), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1530), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1524), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(793), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(789), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2578), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2166), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(616), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(53), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(648), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(627), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2168), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(160), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2574), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1370), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2063), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2561), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2515), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2512), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1186), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1508), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1334), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(55), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2240), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1490), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(646), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2502), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(69), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(574), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2242), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1085), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1821), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1065), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1070), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2498), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1376), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1070), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1195), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(275), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1964), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(37), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(7), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(34), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(123), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(911), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2629), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1553), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1538), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(795), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(797), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2626), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2181), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(615), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(59), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(658), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(617), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2186), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(185), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2622), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1389), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1920), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2612), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2609), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2563), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1197), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1521), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1352), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(70), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2257), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1507), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(661), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2551), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(71), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(577), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2261), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1129), + [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1873), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1026), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1037), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2547), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1419), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1037), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(783), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(36), - [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(14), - [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(34), - [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(182), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1060), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2581), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1995), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2264), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(793), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(803), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(637), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(54), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2263), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(157), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2265), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(59), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(646), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2502), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(69), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(574), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2242), - [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1085), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1821), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1065), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1070), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2498), - [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1070), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 218), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(788), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(37), + [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2), + [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(34), + [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(123), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(911), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2629), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1959), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2285), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(795), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(805), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(635), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(64), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2344), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(168), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2286), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(61), + [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(661), + [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2551), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(71), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(577), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2261), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1129), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1873), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1026), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1037), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2547), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1037), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 143), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 143), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 134), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 134), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 194), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 194), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 222), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 222), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 173), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 173), + [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 241), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 241), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), - [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 112), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 112), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2285), - [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(832), - [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1933), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2459), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1564), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1627), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1567), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2360), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2234), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(654), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(607), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2364), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1370), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2054), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2365), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2366), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2367), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1908), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1566), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1338), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2233), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1475), - [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(646), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2473), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2374), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1379), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2374), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 112), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 112), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 157), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 157), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2266), + [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(979), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1936), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2544), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1584), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1655), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1589), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2413), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2251), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(657), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(638), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2417), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1389), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1922), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2418), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2419), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2420), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1947), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1596), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1354), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2249), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1506), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(661), + [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2491), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2426), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1413), + [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2426), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(264), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(503), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(518), [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(504), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(505), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2439), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(581), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1877), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(580), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(519), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(514), + [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2593), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(591), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1892), + [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(590), [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(570), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(580), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 221), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 221), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 183), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 183), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 220), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 220), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 219), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 219), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 218), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 218), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 217), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 217), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 216), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 216), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 215), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 215), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 214), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 214), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 124), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 124), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 213), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 213), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 212), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 212), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 211), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 211), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 210), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 210), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 209), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 209), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 168), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 168), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 208), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 208), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 207), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 207), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 206), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 206), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 165), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 165), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 113), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 113), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 186), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 186), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 201), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 201), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 117), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 117), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 200), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 200), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 199), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 199), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 118), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 118), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 198), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 198), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 189), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 189), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 121), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 121), [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(495), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(540), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(539), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(537), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(495), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(606), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1864), - [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(617), - [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(497), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(556), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(553), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(545), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2549), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(581), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1877), - [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(580), - [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(497), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1346), - [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(568), - [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(567), - [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1392), - [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2259), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1850), - [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2476), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(633), - [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(646), - [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2457), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1470), - [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(628), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(625), - [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1465), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2290), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1431), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1829), - [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1398), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2153), - [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2153), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 224), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 224), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 226), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 226), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 196), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 196), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 129), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 129), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 130), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 130), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 149), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 149), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 122), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 122), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 124), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 124), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 195), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 195), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 227), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 227), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 122), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 122), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 228), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 228), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 131), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 131), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 124), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 124), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 122), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 122), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 124), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 124), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 132), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 132), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 133), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 133), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 229), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 229), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 191), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 191), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 138), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 138), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 190), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 190), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 189), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 189), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 205), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 205), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 231), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 231), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 207), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 207), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 232), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 232), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 186), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 186), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 137), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 137), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 138), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 138), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 212), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 212), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 235), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 235), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 139), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 139), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 150), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 150), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 153), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 153), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 155), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 155), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 156), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 156), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 159), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 159), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 229), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 229), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 250), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 250), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 245), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 245), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 184), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 184), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 249), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 249), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 248), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 248), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 163), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 163), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 164), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 164), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 236), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 236), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 247), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 247), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 239), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 239), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 119), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 119), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 246), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 246), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 168), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 168), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 169), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 169), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 245), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 245), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 183), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 183), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 237), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 237), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 219), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 219), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 238), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 238), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 182), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 182), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 239), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 239), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 181), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 181), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 171), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 171), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 240), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 240), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 179), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 179), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 171), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 171), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 124), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 124), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 171), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 171), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 171), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 171), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 159), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 159), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 178), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 178), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 172), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 172), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 244), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 244), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 243), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 243), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 174), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 174), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 129), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 129), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 242), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 242), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 176), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 176), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 177), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 177), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(502), + [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(532), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(542), + [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(565), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(502), + [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(619), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1893), + [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(645), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(516), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(537), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(558), + [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(563), + [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2519), + [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(591), + [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1892), + [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(590), + [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(516), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1362), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(579), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(582), + [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1396), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2347), + [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1847), + [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2523), + [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(643), + [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(661), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2466), + [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1469), + [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(646), + [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(647), + [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1470), + [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2321), + [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1430), + [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1820), + [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1411), + [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1968), + [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1968), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 185), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 185), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2476), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2523), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 112), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 112), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 112), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2523), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 143), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 143), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 112), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 124), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 31), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 3, .production_id = 31), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(499), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(500), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1572), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1582), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(623), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1, .production_id = 1), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [4096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), - [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), - [4270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1404), - [4280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(195), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 224), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 224), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(634), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1188), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 1), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1881), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(258), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2174), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1671), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(200), - [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), - [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(571), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__built_in_attr_path, 1, .production_id = 1), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1556), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1570), - [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(42), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(181), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1560), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1336), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(690), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [5003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(584), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1584), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 191), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [5129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1203), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), - [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 80), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 81), - [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 2, .production_id = 81), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5512] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 144), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 144), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 146), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 146), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 152), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 152), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 127), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 127), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 135), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 135), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 197), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 197), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2571), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 112), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 157), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 157), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 157), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 175), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 157), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 125), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 136), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 112), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 128), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 187), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 188), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 223), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 125), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 31), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 3, .production_id = 31), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 158), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [3870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(618), + [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1583), + [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1572), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [4000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(509), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(504), + [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(503), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1, .production_id = 1), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), + [4318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1402), + [4321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(194), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 230), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 230), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 202), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 160), + [4424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 202), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 160), + [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), + [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 1), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1204), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1887), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(612), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 126), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), + [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 203), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1226), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 225), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 193), + [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 192), + [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(134), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__built_in_attr_path, 1, .production_id = 1), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1575), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 162), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 161), + [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 161), SHIFT_REPEAT(578), + [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), + [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2256), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(258), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 142), + [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1707), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 141), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1580), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(40), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1576), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1353), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [5076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(593), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(200), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1600), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [5175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(742), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), + [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 80), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 81), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 2, .production_id = 81), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [5622] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), }; #ifdef __cplusplus @@ -133987,6 +138363,7 @@ extern const TSLanguage *tree_sitter_rust(void) { tree_sitter_rust_external_scanner_serialize, tree_sitter_rust_external_scanner_deserialize, }, + .primary_state_ids = ts_primary_state_ids, }; return &language; }